diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c5d4e6..e5f0be7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - #architecture: ${{ matrix.goarch }} + architecture: ${{ matrix.goarch }} - name: Test run: make test env: diff --git a/Makefile b/Makefile index 9c236b2..84a9009 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ lint: lint-deps test-deps: @if [ ! -f "${GO_BIN}/go_js_wasm_exec" ]; then \ set -ex; \ - go install github.com/agnivade/wasmbrowsertest@${BROWSERTEST_VERSION}; \ + GOOS= GOARCH= go install github.com/agnivade/wasmbrowsertest@${BROWSERTEST_VERSION}; \ ln -s "${GO_BIN}/wasmbrowsertest" "${GO_BIN}/go_js_wasm_exec"; \ fi @go install github.com/mattn/goveralls@v0.0.9