Skip to content

Commit

Permalink
fix: export GOROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
x86taka committed Oct 24, 2024
1 parent c283646 commit 965a8cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: mise activate
run: echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc
- name: go mod tidy
run: go mod tidy
- name: make install go tools
Expand All @@ -24,4 +22,6 @@ jobs:
- name: build
run: make build
- name: testing
run: make test
run: |
export PATH=$(go env GOROOT)/bin:$PATH
make test

0 comments on commit 965a8cf

Please sign in to comment.