Skip to content

Commit ff80ea5

Browse files
authored
Merge pull request #43 from Finoptimize/pre-production-actions
Fix: Exclude integration tests from unit test phase
2 parents e288491 + 959a2e0 commit ff80ea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: go mod download
5454

5555
- name: Run unit tests
56-
run: go test -v -race -coverprofile=coverage.out ./...
56+
run: go test -v -race -coverprofile=coverage.out $(go list ./... | grep -v /tests/integration)
5757

5858
- name: Upload coverage reports
5959
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)