chore: bump version to 1.4.3 and update pyjwt to 2.4.0 (#32) #145
Workflow file for this run
This file contains hidden or 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: Test Package | |
| # Triggers the workflow on push or pull request events | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| python: [3.8, 3.9] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Upgrade PIP | |
| run: python -m pip install --upgrade pip setuptools wheel | |
| - name: Install tox and any other packages | |
| run: pip install -r requirements_dev.txt | |
| - name: Run tox | |
| # Run tox using the version of Python in `PATH` | |
| run: tox -e py |