Skip to content

Commit

Permalink
Put go bin dir first
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Apr 3, 2024
1 parent b2cff64 commit 9530b99
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ jobs:
if: runner.os == 'Windows'
run: go install github.com/editorconfig-checker/editorconfig-checker/v2/cmd/editorconfig-checker@latest
- name: Run editorconfig-checker
run: editorconfig-checker
run: |
export PATH=`go env GOPATH`/bin:${PATH}
which editorconfig-checker
editorconfig-checker
- name: Build
run: make build
- name: Lint
Expand Down

0 comments on commit 9530b99

Please sign in to comment.