feat(ci-cd): Check if code is up to date

Signed-off-by: Myzel394 <github.7a2op@simplelogin.co>
This commit is contained in:
Myzel394 2025-05-29 19:46:19 +02:00
parent 0dda74c8cb
commit 6fe41b5040
No known key found for this signature in database
GPG Key ID: 3B955307C2FC2F11

View File

@ -16,6 +16,12 @@ jobs:
with: with:
github_access_token: ${{ secrets.GITHUB_TOKEN }} github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Check if project can be linted
run: nix develop --command bash -c "just lint" && git diff --exit-code
- name: Check if antlr parsers are up to date
run: nix develop --command bash -c "just update-antlr-parsers" && git diff --exit-code
- name: Check Nix flake - name: Check Nix flake
run: nix flake check run: nix flake check