From 121f5570486577fe3cf1aa168e37096caea8c674 Mon Sep 17 00:00:00 2001 From: miyuko Date: Mon, 22 Dec 2025 16:10:54 +0000 Subject: [PATCH] Fix go vet and staticcheck not performing any work in CI. --- .forgejo/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index d46424e..82bc5eb 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -30,11 +30,11 @@ jobs: go build - name: Run tests run: | - go test ./src + go test ./... - name: Run static analysis run: | - go vet - staticcheck + go vet ./... + staticcheck ./... release: # IMPORTANT: This workflow step will not work without the Releases unit enabled!