You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -308,19 +308,20 @@ You can use the `-v` flag to see verbose output.
308
308
309
309
Store your Coveralls API token as an [Environment Variable](https://docs.gitlab.com/ee/ci/variables/#create-a-custom-variable-in-the-ui) named `COVERALLS_TOKEN`.
310
310
311
-
312
311
```yml
313
312
test:
314
313
timeout: 30m
315
314
stage: test
316
315
artifacts:
317
316
paths:
318
-
- covprofile
317
+
- coverage.txt
318
+
dependencies:
319
+
- build:env
319
320
when: always
320
321
script:
321
-
- go test -covermode atomic -coverprofile=covprofile ./...
322
+
- go test -covermode atomic -coverprofile=coverage.txt ./...
0 commit comments