Skip to content

Commit eed9538

Browse files
committed
tmp
1 parent 930dd9b commit eed9538

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/setup-go@v5
4040
with:
4141
go-version: ${{ matrix.go }}
42-
- run: go test -v -race -coverprofile coverage.txt -covermode=atomic ./...
42+
- run: go test -race -coverprofile coverage.txt -covermode=atomic ./...
4343
- run: go tool cover -func ./coverage.txt
4444
# Check build without CGO
4545
- run: go build ./cmd/actionlint

linter_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ func TestLinterLintOK(t *testing.T) {
5656
if strings.Contains(f, "pyflakes") && pyflakes == "" {
5757
t.Skip("skipping", f, "because \"pyflakes\" command does not exist in system")
5858
}
59+
t.Logf("shellcheck is %q", shellcheck)
60+
t.Logf("pyflakes is %q", pyflakes)
5961

6062
opts := LinterOptions{
6163
Shellcheck: shellcheck,

0 commit comments

Comments
 (0)