Skip to content

Add format check

Add format check #2

Workflow file for this run

name: Python checks
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install
- name: Ruff
run: |
uv run ruff check rapidchecker

Check failure on line 19 in .github/workflows/python-checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-checks.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
uv run ruff format --check rapidchecker
- name: Mypy
run: uv run mypy rapidchecker
- name: Pytest
run: uv run pytest tests