File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 6
6
notify :
7
7
# This number needs to be changed whenever the number of runs in CI is changed.
8
8
# Another option is codecov-cli: https://github.com/codecov/codecov-cli#send-notifications
9
- after_n_builds : 78
9
+ after_n_builds : 27
10
10
wait_for_ci : false
11
11
notify_error : true # if uploads fail, replace cov comment with a comment with errors.
12
12
require_ci_to_pass : false
Original file line number Diff line number Diff line change @@ -134,7 +134,9 @@ jobs:
134
134
env :
135
135
CHECK_FORMATTING : ' ${{ matrix.check_formatting }}'
136
136
NO_TEST_REQUIREMENTS : ' ${{ matrix.no_test_requirements }}'
137
- - if : ${{ always() && matrix.check_formatting != '1' }}
137
+ - if : >-
138
+ always()
139
+ && matrix.check_formatting != '1'
138
140
uses: codecov/codecov-action@v3
139
141
with:
140
142
directory: empty
@@ -198,7 +200,7 @@ jobs:
198
200
run : source .venv/bin/activate && ./ci.sh
199
201
- name : Get Python version for codecov flag
200
202
id : get-version
201
- run : echo "version=$(python -V | cut -d' ' -f2 | cut -d'.' -f1,2)" > $ GITHUB_OUTPUT
203
+ run : echo "version=$(python -V | cut -d' ' -f2 | cut -d'.' -f1,2)" >> "${ GITHUB_OUTPUT}"
202
204
- if : always()
203
205
uses : codecov/codecov-action@v3
204
206
with :
You can’t perform that action at this time.
0 commit comments