diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 51c68feb3..53d5fc1b1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - - run: go test -v -race -coverprofile coverage.txt -covermode=atomic ./... + - run: go test -race -coverprofile coverage.txt -covermode=atomic ./... - run: go tool cover -func ./coverage.txt # Check build without CGO - run: go build ./cmd/actionlint diff --git a/linter_test.go b/linter_test.go index 8621c4c1a..a95664539 100644 --- a/linter_test.go +++ b/linter_test.go @@ -56,6 +56,8 @@ func TestLinterLintOK(t *testing.T) { if strings.Contains(f, "pyflakes") && pyflakes == "" { t.Skip("skipping", f, "because \"pyflakes\" command does not exist in system") } + t.Logf("shellcheck is %q", shellcheck) + t.Logf("pyflakes is %q", pyflakes) opts := LinterOptions{ Shellcheck: shellcheck, @@ -193,6 +195,8 @@ func TestLinterLintError(t *testing.T) { } o.Pyflakes = pyflakes } + t.Logf("shellcheck is %q", shellcheck) + t.Logf("pyflakes is %q", pyflakes) l, err := NewLinter(io.Discard, &o) if err != nil {