From 5ccc95b76fbaa8d268818159d6ff4d64d23b153c Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Fri, 29 Sep 2023 18:49:10 +0200 Subject: [PATCH] Generalize the CI check for the test list to all auto-generated files At the moment, test_list.go is the only file that we generate using go:generate. We will add another one in the next commit though, and we might add even more in the future; it's useful to have a single check on CI that checks them all. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d51c2aaf2..bfc67eada 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,10 +134,10 @@ jobs: # ensure our vendor directory matches up with our go modules run: | go mod vendor && git diff --exit-code || (echo "Unexpected change to vendor directory. Run 'go mod vendor' locally and commit the changes" && exit 1) - - name: Check Integration Test List - # ensure our integration test list is up to date + - name: Check All Auto-Generated Files + # ensure all our auto-generated files are up to date run: | - go generate pkg/integration/tests/tests.go && git diff --exit-code || (echo "Integration test list not up to date. Run 'go generate pkg/integration/tests/tests.go' locally and commit the changes" && exit 1) + go generate ./... && git diff --quiet || (git status -s; echo "Auto-generated files not up to date. Run 'go generate ./...' locally and commit the changes" && exit 1) shell: bash # needed so that we get "-o pipefail" - name: Check Filenames run: scripts/check_filenames.sh