Merge branch 'master' into issue-271-ivar #6
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: Execute Test Suite | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "pypy-3.8-v7.3.10" | |
| - "3.12" | |
| - "3.11" | |
| - "3.10" | |
| - "3.9" | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| name: "${{ matrix.os }} Python: ${{ matrix.python-version }}" | |
| steps: | |
| - name: Setup Python for tox | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install tox | |
| run: python -m pip install tox tox-gh-actions | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} for test | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup test suite | |
| run: tox -vv --notest | |
| - name: Run tests with tox | |
| run: tox -e py --skip-pkg-install |