diff --git a/.github/workflows/runonce.yml b/.github/workflows/runonce.yml index a80e1e4..f5ce3fa 100644 --- a/.github/workflows/runonce.yml +++ b/.github/workflows/runonce.yml @@ -54,21 +54,21 @@ jobs: # Running the linter requires likwid.h, which gets downloaded in the build step - name: Static Analysis with GolangCI-Lint and Upload Report with reviewdog run: | - golangci-lint run | reviewdog -f=golangci-lint -reporter=github-check -filter-mode=nofilter -fail-level none + golangci-lint run | reviewdog -f=golangci-lint -name "Check golangci-lint on build-latest" -reporter=github-check -filter-mode=nofilter -fail-level none env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Running the linter requires likwid.h, which gets downloaded in the build step - name: Run Static Analysis with go vet and Upload Report with reviewdog run: | - go vet ./... | reviewdog -f=govet -reporter=github-check -filter-mode=nofilter -fail-level none + go vet ./... | reviewdog -f=govet -name "Check govet on build-latest" -reporter=github-check -filter-mode=nofilter -fail-level none env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Running the linter requires likwid.h, which gets downloaded in the build step - name: Run Static Analysis with staticcheck and Upload Report with reviewdog run: | - staticcheck ./... | reviewdog -f=staticcheck -reporter=github-check -filter-mode=nofilter -fail-level none + staticcheck ./... | reviewdog -f=staticcheck -name "Check staticcheck on build-latest" -reporter=github-check -filter-mode=nofilter -fail-level none env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}