Skip to content

Commit fcd1298

Browse files
committed
.github/workflows/test: add GOROOT/lib/wasm to PATH for go1.24
1 parent 6fd34f1 commit fcd1298

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ jobs:
148148
version: ${{ env.wasmtime-version }}
149149

150150
- name: Add Go wasm exec to $PATH
151-
run: echo "$(go env GOROOT)/misc/wasm" >> $GITHUB_PATH
151+
run: |
152+
echo "$(go env GOROOT)/misc/wasm" >> $GITHUB_PATH
153+
echo "$(go env GOROOT)/lib/wasm" >> $GITHUB_PATH
152154
153155
- name: Regenerate Go
154156
run: make tests/generated

0 commit comments

Comments
 (0)