Skip to content

chore(deps): bump certifi from 2024.2.2 to 2024.7.4 #43

chore(deps): bump certifi from 2024.2.2 to 2024.7.4

chore(deps): bump certifi from 2024.2.2 to 2024.7.4 #43

Workflow file for this run

name: Lint and check types
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install poetry
run: |
pip install pipx
pipx install poetry
- name: Validate the structure of the pyproject.toml
run: |
poetry check
- name: Verify that poetry.lock is consistent with pyproject.toml
run: |
poetry lock --check
- name: Install dependencies
run: |
poetry install
- name: Check code formatting by ruff
run: |
poetry run ruff format --check
- name: Lint code by ruff
run: |
poetry run ruff .
- name: Check types by pyright
run: |
poetry run pyright