Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,15 @@ jobs:
# files: codecov.json
files: cobertura.xml
fail_ci_if_error: true
# This isn't strictly necessary, but as discussed in
# https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954,
# without this the upload has a fairly high failure rate. That also
# suggests copying the token into the repo in plain text to ensure it
# doesn't also fail on forks. The only thing the token allows is
# uploading coverage, so there's no material security risk. (The token
# is at https://app.codecov.io/gh/PRQL/prql/settings if we need to do
# that.)
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload code coverage results
uses: actions/upload-artifact@v3
with:
Expand Down