store project metadata in pyproject.toml (#45) #102
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: Run tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| run-test: | |
| name: ${{ matrix.python-version }} | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| fail-fast: false | |
| # steps to run in each job. Some are github actions, others run shell commands | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Set up python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: ${{ matrix.architecture }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --upgrade pytest . | |
| pip install --upgrade tox . | |
| pip list | |
| - name: Run tests | |
| run: | | |
| tox | |
| run-lint: | |
| name: lint-${{ matrix.python-version }} | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| # run this job using this matrix, excluding some combinations below. | |
| matrix: | |
| python-version: | |
| - "3.13" | |
| fail-fast: false | |
| # steps to run in each job. Some are github actions, others run shell commands | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Set up python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: ${{ matrix.architecture }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --upgrade tox setuptools | |
| pip list | |
| - name: Run tests | |
| run: tox -e lint | |