Skip to content

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

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 #10

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
run-make:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- { name: "make check", cmd: "make check" }
- { name: "make test", cmd: "make test" }
- { name: "make format --check", cmd: "make format FLAGS=--check" }
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: ${{ matrix.cmd }}