Skip to content

chore: Remove ruff

chore: Remove ruff #41

Workflow file for this run

name: Pytest
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --with test
- name: Run pytest
run: poetry run pytest