Skip to content

Merge pull request #145 from JorianWoltjer/jwt-hash #285

Merge pull request #145 from JorianWoltjer/jwt-hash

Merge pull request #145 from JorianWoltjer/jwt-hash #285

Workflow file for this run

# .github/workflows/tests.yml
name: Tests
on: [push, pull_request]
jobs:
tests:
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: nox
run: |
pip install nox
pip install poetry
nox