Skip to content

Separate engine modules / Fix wazero engine for TinyGo 0.35.0 #208

Separate engine modules / Fix wazero engine for TinyGo 0.35.0

Separate engine modules / Fix wazero engine for TinyGo 0.35.0 #208

Workflow file for this run

name: go tests
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.5'
- uses: acifani/setup-tinygo@v2
with:
tinygo-version: '0.34.0'
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- name: Build Wasm
run: make build-wasm
- name: Test
run: make tests