From b056349c8b2b9bb5622e0e9c573bd9b347221eba Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Mon, 7 Feb 2022 21:12:15 +0000 Subject: [PATCH] [GitHub Actions] Show diff if test vectors generated by CI do not match. Signed-off-by: Daira Hopwood --- .github/workflows/test_vectors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_vectors.yml b/.github/workflows/test_vectors.yml index e2184b9..73d9b3e 100644 --- a/.github/workflows/test_vectors.yml +++ b/.github/workflows/test_vectors.yml @@ -34,4 +34,4 @@ jobs: run: ./regenerate.sh ${{ matrix.kind }} ${{ matrix.extension }} - name: Verify there are no changes - run: test -z "$(git status --porcelain)" + run: git diff; git ls-files --others --exclude-standard; test -z "$(git status --porcelain)"