Skip to content

Grammar bugfixes (#8) #32

Grammar bugfixes (#8)

Grammar bugfixes (#8) #32

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 check
run: uv run ruff check rapidchecker
- name: Ruff format
run: uv run ruff format --check rapidchecker
- name: Mypy
run: uv run mypy rapidchecker
- name: Pytest
run: uv run pytest tests