Merge pull request #97 from pjbgf/new-default #44
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 wasip1 | |
on: | |
push: | |
branches: [ "master", "main" ] | |
pull_request: | |
permissions: {} | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.22.x,1.23.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install wasirun | |
run: | | |
go install github.com/stealthrocket/wasi-go/cmd/wasirun@latest | |
- name: Test | |
run: make wasitest |