.github/workflows: enable Wasm tests for Go 1.15 and 1.16

These were disabled at 0c1449de5e
but not reverted appropriately.
This commit is contained in:
Hajime Hoshi 2022-08-28 12:52:57 +09:00
parent ec68534c73
commit 6e2fb46625

View File

@ -126,7 +126,7 @@ jobs:
- name: go test (Wasm)
# TODO: Investigate times out on Windows. (#1313)
if: ${{ !startsWith(matrix.os, 'windows-') && !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') }}
if: ${{ !startsWith(matrix.os, 'windows-') }}
run: |
env GOOS=js GOARCH=wasm go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./...
env GOOS=js GOARCH=wasm EBITENGINE_OPENGL=webgl1 go test -tags=example ${{ !startsWith(matrix.go, '1.15.') && !startsWith(matrix.go, '1.16.') && '-shuffle=on' || '' }} -v ./...