There was an error while loading. Please reload this page.
2 parents f997e96 + e861644 commit ef6296eCopy full SHA for ef6296e
README.md
@@ -5,15 +5,16 @@
5
## Guide
6
7
### GitHub Actions
8
-A minimal configuration for public repos:
+A minimal configuration might look like:
9
10
```yml
11
steps:
12
# (Other steps go here)
13
- name: "Upload coverage to Codecov"
14
- uses: codecov/codecov-action@v1
+ uses: codecov/codecov-action@v2
15
with:
16
fail_ci_if_error: true
17
+ token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
18
```
19
20
See [codecov/codecov-action](https://github.com/codecov/codecov-action) for
0 commit comments