Skip to content

Commit af987d4

Browse files
committed
ci: fix workflow YAML parsing
1 parent f1ad691 commit af987d4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI
22

3-
on:
3+
"on":
44
push:
55
branches: [main]
66
pull_request:
@@ -31,4 +31,5 @@ jobs:
3131
run: go install honnef.co/go/tools/cmd/staticcheck@latest
3232

3333
- name: Run staticcheck
34-
run: "$(go env GOPATH)/bin/staticcheck" ./...
34+
run: |
35+
"$(go env GOPATH)/bin/staticcheck" ./...

0 commit comments

Comments
 (0)