Update readme links #483
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: Version test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| pyversion: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| # test legacy runtimes only; build workflow uses the latest | |
| python: [ 3.7, 3.8, 3.9, "3.10", "3.11" ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Run tests | |
| run: make test |