Skip to content

[Snyk] Security upgrade certifi from 2024.6.2 to 2024.7.4 #394

[Snyk] Security upgrade certifi from 2024.6.2 to 2024.7.4

[Snyk] Security upgrade certifi from 2024.6.2 to 2024.7.4 #394

Workflow file for this run

name: Run pytest
on:
push:
branches:
- main
- update-dependencies
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -e .[dev]
- name: Lint
run: |
black --check .
mypy .
- name: Test with pytest
run: |
pytest