From f6f004b13c948326044fcb3784ead130955f36b0 Mon Sep 17 00:00:00 2001 From: Hugo McNally Date: Sat, 8 Jun 2024 13:42:56 +0100 Subject: [PATCH] Added licence check to CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5f7544..d42b8f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,5 +30,11 @@ jobs: - name: Nix Format Check run: nix fmt -- . --check + # This isn't part of the the nix flake checks + # because it can't ignore submodules + # when they are vendored in by Nix. + - name: Licence Check + run: nix run nixpkgs#reuse lint + - name: Run Nix Checks run: nix flake check -L .?submodules=1