Skip to content

Commit da9e499

Browse files
Merge pull request #1483 from step-security/fix-test-cmd
Update test command
2 parents cc8ab6b + 50564ba commit da9e499

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/int.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_INT }}
3434
aws-region: us-west-2
3535

36-
- run: go test
36+
- run: go test ./... -coverpkg=./...
3737
env:
3838
PAT: ${{ secrets.PAT }}
3939

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8
2929
with:
3030
go-version: 1.17
31-
32-
- run: go test
33-
env:
34-
PAT: ${{ secrets.PAT }}
35-
31+
32+
- run: go test ./... -coverpkg=./...
33+
env:
34+
PAT: ${{ secrets.PAT }}
35+
3636
- uses: step-security/wait-for-secrets@1204ba02d7a707c4ef2e906d2ea1e36eebd9bbd2
3737
id: wait-for-secrets
3838
with:

0 commit comments

Comments
 (0)