We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.coveralls.yml
1 parent 510f9c9 commit f99daedCopy full SHA for f99daed
2 files changed
.coveralls.yml
.github/workflows/coveralls.yml
@@ -1,14 +1,19 @@
1
# Check the test coverage of the code.
2
#
3
-# This runs as a Github Action.
+# This runs as a Github Action. Note that the Coverall repository token is
4
+# injected as an environment variable, instead of being read from
5
+#`.coveralls.yaml` config file.
6
7
# See https://github.com/marketplace/actions/coveralls-github-action
8
+#
9
+# Also see
10
11
name: Test Coveralls
12
on: ["push", "pull_request"]
13
14
env:
15
COVERAGE: true
16
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
17
18
jobs:
19
test:
0 commit comments