Install jq in the codecov workflow
Some checks failed
golangci-lint / lint (push) Successful in 47s
REUSE Compliance Check / test (push) Successful in 4s
SonarQube / Build (push) Failing after 1m29s

This commit adds a new step to the codecov.yml workflow. This step installs 'jq', a command-line JSON processor, which might be necessary for the processing of test results or coverage
This commit is contained in:
Winni Neessen 2024-02-14 00:33:51 +01:00
parent 8923b88e07
commit e4cbab4e43
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D

View file

@ -35,6 +35,9 @@ jobs:
- name: Run Tests
run: |
go test -v -shuffle=on -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
- name: Install jq
run: |
sudo apt-get -y install jq; which jq
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
runs-on: ubuntu-latest