Package updates #55
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
| # GitHub Actions workflow for testing and continuous integration. | |
| # | |
| # This file performs testing using tox and tox.ini to define and configure the test environments. | |
| name: CI Tests | |
| on: | |
| push: | |
| branches: | |
| - main # GitHub now defaults to 'main' as the name of the primary branch. Change this as needed. | |
| # tags: # run CI if specific tags are pushed | |
| pull_request: | |
| # branches: # only build on PRs against 'main' if you need to further limit when CI is run. | |
| # - main | |
| jobs: | |
| # Github Actions supports ubuntu, windows, and macos virtual environments: | |
| # https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners | |
| ci_tests: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - name: Code style checks | |
| os: ubuntu-latest | |
| python: '3.13' | |
| toxenv: codestyle | |
| - name: Python 3.13 with required dependencies and coverage checking | |
| os: ubuntu-latest | |
| python: '3.13' | |
| toxenv: py313-test-cov | |
| - name: Python 3.13 with nightly wheels for key dependencies | |
| continue-on-error: true | |
| os: ubuntu-latest | |
| python: '3.13' | |
| toxenv: py313-test-devdeps | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up python ${{ matrix.python }} on ${{ matrix.os }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Install base dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install tox codecov | |
| - name: Test with tox | |
| run: | | |
| tox -e ${{ matrix.toxenv }} | |
| - name: Upload coverage to codecov | |
| if: "contains(matrix.toxenv, '-cov')" | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| file: ./coverage.xml |