Skip to content

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

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

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: make check
run: |
set -euxo pipefail
make check
- name: make test
run: |
set -euxo pipefail
make test
- name: format --check (from make -n format)
shell: bash
run: |
set -euxo pipefail
make checkformat