Skip to content

Commit

Permalink
chore: run go mod tidy for samples (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite authored May 30, 2024
1 parent 7379858 commit 3251860
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/integration-tests-on-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 3251860

Please sign in to comment.