Merge pull request #4 from mosquito/bugfixes #22
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup python3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install poetry | |
run: python -m pip install poetry | |
- name: Install dependencies | |
run: poetry install | |
env: | |
FORCE_COLOR: yes | |
- name: Run mypy | |
run: poetry run mypy jwt_rsa | |
env: | |
FORCE_COLOR: yes | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python: '3.10' | |
- python: '3.11' | |
- python: '3.12' | |
- python: '3.13' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup python${{ matrix.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "${{ matrix.python }}" | |
- name: Install poetry | |
run: python -m pip install poetry | |
- name: Install dependencies | |
run: poetry install | |
env: | |
FORCE_COLOR: yes | |
- name: Run tests | |
run: poetry run pytest | |
env: | |
FORCE_COLOR: yes |