Merge pull request #586 from azmeuk/rfc9068 #430
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-ignore: | |
- 'wip-*' | |
paths-ignore: | |
- 'docs/**' | |
pull_request: | |
branches-ignore: | |
- 'wip-*' | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 3 | |
matrix: | |
python: | |
- version: "3.8" | |
- version: "3.9" | |
- version: "3.10" | |
- version: "3.11" | |
- version: "3.12" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python.version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python.version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox coverage | |
- name: Test with tox ${{ matrix.python.toxenv }} | |
env: | |
TOXENV: py,jose,clients,flask,django | |
run: tox | |
- name: Report coverage | |
run: | | |
coverage combine | |
coverage report | |
coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
flags: unittests | |
name: GitHub |