From 965a8cf3112a258a41276f04b49f02e70f88c58f Mon Sep 17 00:00:00 2001 From: t-umeda Date: Thu, 24 Oct 2024 11:50:10 +0900 Subject: [PATCH] fix: export GOROOT --- .github/workflows/lint_and_test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint_and_test.yaml b/.github/workflows/lint_and_test.yaml index a64e6f9..fc82fc5 100644 --- a/.github/workflows/lint_and_test.yaml +++ b/.github/workflows/lint_and_test.yaml @@ -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 @@ -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