Skip to content

chore: Update lock file #12

chore: Update lock file

chore: Update lock file #12

Workflow file for this run

name: Python checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Lint with ruff
run: ruff check .
- name: Check formatting with black
run: black . --check --verbose
- name: Run unit tests
run: |
pytest