Skip to content

Merge pull request #15 from parker-research/ci-on-pr #9

Merge pull request #15 from parker-research/ci-on-pr

Merge pull request #15 from parker-research/ci-on-pr #9

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: nixbuild/nix-quick-install-action@v34
- name: Run fmt check
run: nix develop --command make fmt-check
- name: Run clippy checks
run: nix develop --command make clippy
- name: Run tests
run: nix develop --command make test