From e8ca4f216bfe1b67aaa5f879e432c8bf8cc8eace Mon Sep 17 00:00:00 2001 From: hektor Date: Sat, 1 Aug 2026 15:36:26 +0200 Subject: [PATCH] ci: simplify CI pipeline to just 'check' --- .gitea/workflows/build.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b49649b..4de8700 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,13 +1,12 @@ -name: build +name: check on: pull_request: push: branches: [main] jobs: - hecuba: + lint: runs-on: nix steps: - uses: actions/checkout@v4 - - run: nix eval .#nixosConfigurations.hecuba.config.system.build.toplevel.drvPath - - run: nix build .#nixosConfigurations.hecuba.config.system.build.toplevel --print-build-logs + - run: nix build .#checks.x86_64-linux.pre-commit-check --print-build-logs