Add WASM wrappers & compiled

This commit is contained in:
arnaucube
2021-01-10 23:09:54 +01:00
parent a7ea30d815
commit c3e4afc552
10 changed files with 159 additions and 1 deletions

View File

@@ -13,4 +13,5 @@ jobs:
- name: Lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.30.0
rm -r wasm
$(go env GOPATH)/bin/golangci-lint run --timeout=5m -c .golangci.yml

View File

@@ -16,4 +16,4 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: go test ./...
run: go test $(go list ./... | grep -v /wasm)