Skip to content

ci: Enable GitHub Actions on Pull Requests and branches #8

ci: Enable GitHub Actions on Pull Requests and branches

ci: Enable GitHub Actions on Pull Requests and branches #8

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