try Python 3.14 with and without numba #1300
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| #schedule: | |
| # - cron: '59 23 * * *' | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: Manual Unittest Run | |
| default: test | |
| required: false | |
| jobs: | |
| unittests: | |
| env: | |
| RUN_TEST: pytest -v spreg -n auto --cov=spreg --cov-report=xml --color yes --cov-append --cov-report term-missing | |
| ############################################## replace above with this chunk when docstring testing gets worked out | |
| #RUN_TEST: pytest -v spreg -n auto --cov=spreg --doctest-modules --cov-report=xml --color yes --cov-append --cov-report term-missing | |
| ############################################## | |
| name: ${{ matrix.os }}, ${{ matrix.environment-file }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| environment-file: | |
| - ci/311-latest.yaml | |
| - ci/312-latest.yaml | |
| - ci/313-latest.yaml | |
| - ci/314-latest.yaml | |
| - ci/314-numba-latest.yaml | |
| - ci/314-dev.yaml | |
| - ci/314-numba-dev.yaml | |
| include: | |
| # Python 3.14 WIT optional numba | |
| - environment-file: ci/314-numba-latest.yaml | |
| os: macos-15-intel # Intel | |
| - environment-file: ci/314-numba-latest.yaml | |
| os: macos-latest # Apple Silicon | |
| - environment-file: ci/314-numba-latest.yaml | |
| os: windows-latest | |
| # Python 3.14 WITHOUT optional numba | |
| - environment-file: ci/314-latest.yaml | |
| os: macos-15-intel # Intel | |
| - environment-file: ci/314-latest.yaml | |
| os: macos-latest # Apple Silicon | |
| - environment-file: ci/314-latest.yaml | |
| os: windows-latest | |
| fail-fast: false | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches and tags. | |
| - name: setup micromamba | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: ${{ matrix.environment-file }} | |
| micromamba-version: 'latest' | |
| - name: run tests | |
| run: ${{ env.RUN_TEST }} | |
| - name: codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./coverage.xml | |
| name: spreg-codecov |