Update version listed in documentation's Pre-Commit example #324
Workflow file for this run
This file contains 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.11" | |
- "3.10" | |
- "3.9" | |
- "3.8" | |
- "3.7" | |
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.11" | |
- 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 |