.github/workflows/tests: disable codecov until further notice

The script hangs while pinging codecov for a url to upload the results
to.
This commit is contained in:
Sanne Raymaekers 2024-04-30 12:52:01 +02:00
parent a87e3069a1
commit 37233b7b62

View file

@ -35,8 +35,10 @@ jobs:
- name: Run unit tests
run: go test -race -covermode=atomic -coverprofile=coverage.txt -coverpkg=$(go list ./... | grep -v rpmmd/test$ | tr "\n" ",") ./...
- name: Send coverage to codecov.io
run: bash <(curl -s https://codecov.io/bash)
# disabled as 'pinging codecov' hangs
# see https://github.com/codecov/feedback/issues/354
# - name: Send coverage to codecov.io
# run: bash <(curl -s https://codecov.io/bash)
db-tests:
name: "🗄 DB tests"