Disable Codecov (for now)
It's been failing to upload for a while, and I don't think the failures are *completely* their fault (GitHub's got to share some of the blame, I think), but the end result is that we don't really have any good options for continuing to use the service (bad/unacceptable options include install an app with way too many privileges on the org/repo or add a "secret" with a personal access token ... and make that available to Pull Requests too 🙃).
This commit is contained in:
parent
573448144c
commit
a00d28f873
|
|
@ -42,12 +42,13 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
docker build --pull --file Dockerfile.test --tag test .
|
docker build --pull --file Dockerfile.test --tag test .
|
||||||
docker run --rm test cat coverage.out > coverage.out
|
docker run --rm test cat coverage.out > coverage.out
|
||||||
- name: Codecov
|
# TODO find a suitable codecov solution that doesn't require privileged access to the org/repo
|
||||||
uses: codecov/codecov-action@v3
|
#- name: Codecov
|
||||||
with:
|
# uses: codecov/codecov-action@v3
|
||||||
files: coverage.out
|
# with:
|
||||||
fail_ci_if_error: true
|
# files: coverage.out
|
||||||
verbose: true
|
# fail_ci_if_error: true
|
||||||
|
# verbose: true
|
||||||
dockerfile:
|
dockerfile:
|
||||||
name: Test Dockerfile
|
name: Test Dockerfile
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue