Skip to content

updating .gitignore to not track 3 week evaluation plan #5

updating .gitignore to not track 3 week evaluation plan

updating .gitignore to not track 3 week evaluation plan #5

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