Skip to content

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group #208

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group #208

Workflow file for this run

name: Lint
on: push
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Ruff Formatter
run: ruff format --diff .
env:
RUFF_OUTPUT_FORMAT: github
- name: Ruff Linter
run: ruff check .
env:
RUFF_OUTPUT_FORMAT: github
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: mypy
run: mypy .