Skip to content

⬆️ Bump Authlib and requests packages following cve #587

⬆️ Bump Authlib and requests packages following cve

⬆️ Bump Authlib and requests packages following cve #587

Workflow file for this run

name: Pytest
on:
workflow_dispatch:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
make test