Skip to content

Upgrade wazero to v1.8.0 and add Close() method to the Calculator interface #19

Upgrade wazero to v1.8.0 and add Close() method to the Calculator interface

Upgrade wazero to v1.8.0 and add Close() method to the Calculator interface #19

Workflow file for this run

name: test-witness
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
containers:
- 1.18.10-bullseye
- 1.19.9-bullseye
- 1.20.4-bullseye
runs-on: ubuntu-20.04
container: golang:${{matrix.containers}}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: cd witness && go test -race -timeout=60s -v ./...
- run: cd witness/wazero && go test -race -timeout=60s -v ./...
- run: cd witness/wasmer && go test -race -timeout=60s -v ./...
- run: cd witness/test_wasm_impls && go test -race -timeout=300s -v ./...