Skip to content

Commit

Permalink
Getting path right
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed Oct 8, 2024
1 parent f5123f8 commit 02e7fb7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: make deps
- name: Update path
run: export PATH=$PATH:$(go env GOPATH)/bin
- name: Run tests
run: echo $PATH && make lint
- name: Run linter
run: |
make deps
go env GOPATH
export PATH=$PATH:$(go env GOPATH)/bin
echo $PATH
make lint
build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 02e7fb7

Please sign in to comment.