Skip to content

Bump pyjwt from 2.12.1 to 2.13.0 (#13) #37

Bump pyjwt from 2.12.1 to 2.13.0 (#13)

Bump pyjwt from 2.12.1 to 2.13.0 (#13) #37

Workflow file for this run

name: Lint and Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint-and-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Init
run: make init
- name: Install dependencies
run: make install
- name: Run checks
run: make check
- name: Run tests
run: make test