Skip to content

Update README

Update README #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: nix develop --command uv sync
- name: Run linting
run: nix develop --command runLint
- name: Run tests
run: nix develop --command runTests
- name: Upload coverage reports
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: htmlcov/
retention-days: 7