From 32518601216607f0c9ea164ed80b19b5fbc5460e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Knut=20Olav=20L=C3=B8ite?= Date: Thu, 30 May 2024 16:58:13 +0200 Subject: [PATCH] chore: run go mod tidy for samples (#96) --- .github/workflows/integration-tests-on-production.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-on-production.yml b/.github/workflows/integration-tests-on-production.yml index 7b10454..b762fbc 100644 --- a/.github/workflows/integration-tests-on-production.yml +++ b/.github/workflows/integration-tests-on-production.yml @@ -39,7 +39,10 @@ jobs: SPANNER_TEST_PROJECT: ${{ secrets.GCP_PROJECT_ID }} SPANNER_TEST_INSTANCE: test-instance - name: Run samples tests on production - run: cd samples && go test -v -timeout 45m ./... -run '^TestIntegration_' + working-directory: ./samples + run: | + go mod tidy + go test -v -timeout 45m ./... -run '^TestIntegration_' env: JOB_TYPE: test SPANNER_TEST_PROJECT: ${{ secrets.GCP_PROJECT_ID }}