Skip to content

Merge pull request #129 from Digiratory/revert-128-125-prediction-sup… #420

Merge pull request #129 from Digiratory/revert-128-125-prediction-sup…

Merge pull request #129 from Digiratory/revert-128-125-prediction-sup… #420

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
pre-commit-validation:
uses: ./.github/workflows/reusable_pre-commit-validation.yml
build-wheels:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.11"]
fail-fast: false
uses: ./.github/workflows/reusable_build-wheels.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
needs: pre-commit-validation
test:
strategy:
matrix:
include:
- os: ubuntu-latest
python-version: "3.11"
artifact-name: fluctuation-analysis-tools-ubuntu-latest-3.11
- os: windows-latest
python-version: "3.11"
artifact-name: fluctuation-analysis-tools-windows-latest-3.11
- os: macos-latest
python-version: "3.11"
artifact-name: fluctuation-analysis-tools-macos-latest-3.11
fail-fast: false
uses: ./.github/workflows/reusable_test.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
needs: build-wheels