Upgrade wazero to v1.8.0 and add Close() method to the Calculator interface #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test prover default linux build | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [ 1.18.x ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
if: success() | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: false | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Print CPU Info | |
run: cat /proc/cpuinfo | |
- name: Run tests | |
run: cd tests && go test -v -covermode=count | |