We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 348275d commit 524a892Copy full SHA for 524a892
1 file changed
.github/workflows/python-app.yml
@@ -9,7 +9,7 @@ name: Unit Tests
9
10
on:
11
push:
12
- branches: [ main ] # run when anything is pushed to these branches
+ branches: [ main, docs_tests ] # run when anything is pushed to these branches
13
pull_request:
14
branches: [ main ] # run for the code submitted as a PR to these branches
15
@@ -55,12 +55,14 @@ jobs:
55
56
# Using Codecov's action, upload the coverage report for the triggering commit/PR
57
- name: Upload coverage
58
- uses: codecov/codecov-action@v2
+ uses: codecov/codecov-action@v4
59
with:
60
file: ./coverage.xml
61
fail_ci_if_error: true
62
verbose: true
63
version: "v0.1.15"
64
+ codecov:
65
+ token: ${{ secrets.CODECOV_TOKEN }}
66
67
build_docs:
68
runs-on: ubuntu-latest
0 commit comments