Bump tox from 4.21.2 to 4.23.2 #306
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: Check code quality | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
code-quality: | |
name: Code quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
make requirements-dev | |
make requirements | |
- name: Install pre-commit hooks | |
run: | | |
pre-commit install | |
- name: Run pre-commit | |
run: | | |
pre-commit run -a | |
run-tests: | |
name: Tests on ${{ matrix.os }} and ${{ matrix.python }} | |
needs: [code-quality] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python: ["3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: ${{ matrix.python }} | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
make requirements-dev | |
make requirements | |
- name: Code coverage | |
run: | | |
make run-tests | |
code-coverage: | |
name: Code coverage | |
needs: [run-tests, code-quality] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
make requirements-dev | |
make requirements | |
- name: Code coverage | |
run: | | |
make run-coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4.6.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: martin-majlis/Wikipedia-API |