Skip to content

adding the results markdown document to .gitignore for now to keep lo… #16

adding the results markdown document to .gitignore for now to keep lo…

adding the results markdown document to .gitignore for now to keep lo… #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install Python 3.11
run: uv python install 3.11
- name: Sync project
run: uv sync --extra dev
- name: Ruff lint
run: uv run ruff check .
- name: Ruff format check
run: uv run ruff format --check .
- name: Pyright
run: uv run pyright
- name: Pytest
run: uv run pytest --cov=src/fmharness --cov-report=term-missing