reports. Simultaneously, the installation of 'jq' has been removed from the sonarqube.yml workflow as it's no longer needed there.
Some checks failed
golangci-lint / lint (push) Successful in 48s
REUSE Compliance Check / test (push) Successful in 4s
SonarQube / Build (push) Failing after 1m12s

This commit is contained in:
Winni Neessen 2024-02-14 00:36:34 +01:00
parent e4cbab4e43
commit eb675388f0
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D
2 changed files with 4 additions and 4 deletions

View file

@ -35,11 +35,7 @@ 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
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos

View file

@ -30,6 +30,10 @@ jobs:
run: |
go test -v -shuffle=on -race --coverprofile=./cov.out ./...
- name: Install jq
run: |
sudo apt-get -y install jq; which jq
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}