Skip to content

Add CI to run checks and tests; reformat everything so those tests pass #6

Add CI to run checks and tests; reformat everything so those tests pass

Add CI to run checks and tests; reformat everything so those tests pass #6

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: |
set -euxo pipefail
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- run: make check
- run: make test
- run: make checkformat