From 86cdba7a6ea2407d720590fb1e5aeb417f787a4d Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Mon, 22 Apr 2024 13:17:32 -0300 Subject: [PATCH] Switch to git diff --exit-code --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2d4860..8d796f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - run: nix develop --command pnpm install - run: nix develop --command pnpm run all - run: git status --porcelain=v1 - - run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0 + - run: git diff --exit-code run-test-suite: name: Run test suite strategy: