Skip to content

Fix for new path system #64

Fix for new path system

Fix for new path system #64

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: CI check
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test1
run: GOOS=js GOARCH=wasm go build -o build/main.wasm tests/test1/test1.go
- name: Example
run: GOOS=js GOARCH=wasm go build -o build/main.wasm example/example.go