We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ddc71 commit c528f35Copy full SHA for c528f35
1 file changed
.github/workflows/ci.yml
@@ -51,7 +51,7 @@ jobs:
51
env:
52
GOFLAGS: ${{ matrix.flags }}
53
LOG_LEVEL: error
54
- run: go test -short -coverprofile=profile${{ matrix.flags }}.out -covermode=atomic -coverpkg=./... ./...
+ run: go test -timeout=30m -short -coverprofile=profile${{ matrix.flags }}.out -covermode=atomic -coverpkg=./... ./...
55
56
- name: Strip generated files from coverage
57
run: |
@@ -61,9 +61,7 @@ jobs:
61
uses: actions/upload-artifact@v4
62
with:
63
name: coverage
64
- path: |
65
- profile.out.clean
66
- profile-race.out.clean
+ path: profile${{ matrix.flags }}.out.clean
67
if-no-files-found: error
68
retention-days: 1
69
0 commit comments