Skip to content

Commit

Permalink
chore: fix integration test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Dec 17, 2024
1 parent 768fa31 commit 19a1b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ jobs:
run: |
set -euo pipefail
# shellcheck disable=SC2046
go test -v -race -tags integration -run '^${{ matrix.test }}$' $(git grep -l '^//go:build integration' | xargs grep -l '^func ${{ matrix.test }}' | xargs -I {} dirname ./{})
go test -v -race -tags integration -run '^(${{ matrix.test }})$' $(git grep -l '^//go:build integration' | xargs grep -l -E '^func (${{ matrix.test }})' | xargs -I {} dirname ./{})
infrastructure-shard:
name: Shard Infrastructure Tests
# if: github.event_name != 'pull_request' || github.event.action == 'enqueued' || contains( github.event.pull_request.labels.*.name, 'run-all')
Expand Down

0 comments on commit 19a1b2d

Please sign in to comment.