This commit is contained in:
iofq 2025-09-16 22:43:17 -05:00
commit 5d2b1a868e
11 changed files with 4018 additions and 0 deletions

21
.github/workflows/main.yaml vendored Normal file
View file

@ -0,0 +1,21 @@
---
name: CI
on: [push, pull_request]
jobs:
check-generated-parsers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- run: mv generated.nix generated.nix.old
- run: nix develop --command "generate-parsers"
- run: diff generated.nix generated.nix.old
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- run: nix run nixpkgs#nixfmt **/*.nix
- run: nix flake check
- run: nix build .