tests: remove useless flake8 related dependency in the style tox env #454
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: tests | |
on: | |
push: | |
branches: | |
- main | |
- '*.x' | |
pull_request: | |
branches: | |
- main | |
- '*.x' | |
jobs: | |
tests: | |
name: ${{ matrix.python }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- '3.13' | |
- '3.12' | |
- '3.11' | |
- '3.10' | |
- '3.9' | |
- 'pypy-3.10' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }} | |
- run: pip install tox | |
- run: tox -e py | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.13' | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }} | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }} | |
- run: pip install tox | |
- run: tox -e style | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.13' | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }} | |
- run: pip install tox | |
- run: tox -e docs |