Skip to content

feat!: wasmvm 2

feat!: wasmvm 2 #28

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: 1.21.0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: unit tests
run: |
make test