From 88aa61eb9550c1c92ef63812f09861e4005af581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BChlbacher?= Date: Thu, 23 May 2024 20:48:12 +0200 Subject: [PATCH] ci: run nix build in workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit so since up until the last merged changes, this entire gh action pretty much equated to a no-op, afaict. and even now, the only thing i added in PR #272 is a formatter check only for *.nix files. i plan to add more checks soon that will be run by `nix flake check`. but as of right now, adding this is the quickest way to make sure at least something useful is done by this workflow. Signed-off-by: Thomas Mühlbacher --- .github/workflows/nix-flake.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nix-flake.yml b/.github/workflows/nix-flake.yml index af9582ac..4dfb6453 100644 --- a/.github/workflows/nix-flake.yml +++ b/.github/workflows/nix-flake.yml @@ -19,3 +19,4 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - run: nix flake show - run: nix flake check --print-build-logs + - run: nix build --print-build-logs