File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,17 +36,17 @@ jobs:
3636 run : >
3737 cargo llvm-cov report --ignore-filename-regex 'binrw/(tests|src/docs)'
3838 # https://github.com/actions/runner/issues/520
39- - name : Determine whether codecov.io secret is available
40- id : has_codecov
41- run : echo 'result=${{ secrets.CODECOV_TOKEN }}' >> $GITHUB_OUTPUT
39+ # - name: Determine whether codecov.io secret is available
40+ # id: has_codecov
41+ # run: echo 'result=${{ secrets.CODECOV_TOKEN }}' >> $GITHUB_OUTPUT
4242 - name : Generate coverage file
4343 run : >
4444 cargo llvm-cov report --ignore-filename-regex 'binrw/(tests|src/docs)'
4545 --lcov --output-path lcov.info
46- if : steps.has_codecov.outputs.result != 0
46+ # if: steps.has_codecov.outputs.result != 0
4747 - name : Upload to codecov.io
4848 uses : codecov/codecov-action@v1
4949 with :
5050 files : lcov.info
5151 token : ${{ secrets.CODECOV_TOKEN }}
52- if : steps.has_codecov.outputs.result != 0
52+ # if: steps.has_codecov.outputs.result != 0
You can’t perform that action at this time.
0 commit comments