Skip to content

Fix ruff warning about incompatible lints #33

Fix ruff warning about incompatible lints

Fix ruff warning about incompatible lints #33

Workflow file for this run

name: Unit Tests
on:
pull_request:
push:
branches: [ "master", "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv pip install --system pytest ruff
- name: Lint, format, and type-check with ruff
run: |
ruff check .
ruff format --check --diff .
- name: Run tests
run: pytest