Skip to content

run unit tests in the pipeline #26

run unit tests in the pipeline

run unit tests in the pipeline #26

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
version: "latest"
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- run: uv sync --group dev
- run: uv run ruff check .
- run: uv run mypy .