Skip to content

Merge pull request #203 from invopop/correction-options-schema #871

Merge pull request #203 from invopop/correction-options-schema

Merge pull request #203 from invopop/correction-options-schema #871

Workflow file for this run

name: Test Go
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.17.7'
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Install Dependencies
env:
GOPROXY: https://proxy.golang.org,direct
run: go mod download
- name: Test
run: go test -tags unit -race ./...
# Skipping WASM test, this can be done by CLI
#- name: Test WASM
# run: GOOS=js GOARCH=wasm go test ./... -exec=$(go env GOROOT)/misc/wasm/go_js_wasm_exec