From 32be9d8fa9d36e14f440ebbb7cc7f30292226f34 Mon Sep 17 00:00:00 2001 From: Holger Obermaier <40787752+ho-ob@users.noreply.github.com> Date: Fri, 23 Jan 2026 13:41:25 +0100 Subject: [PATCH] Add upload for go vet --- .github/workflows/runonce.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/runonce.yml b/.github/workflows/runonce.yml index f630fd2..ab41950 100644 --- a/.github/workflows/runonce.yml +++ b/.github/workflows/runonce.yml @@ -55,13 +55,14 @@ jobs: # args: --verbose # Running the linter requires likwid.h, which gets downloaded in the build step - - name: Run Static Analysis with go vet - run: go vet ./... + - 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 # 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 + staticcheck ./... | reviewdog -f=staticcheck -reporter=github-check -filter-mode=nofilter -fail-level none env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}