Add test workflow
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Neemek 2025-08-24 16:16:14 +02:00
parent 9c91a1176a
commit c9eba7ada0

View file

@ -0,0 +1,20 @@
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Build CLI
working-directory: ./cli
run: go build
- name: Build WASM
working-directory: ./wasm
run: GOOS=js GOARCH=wasm go build
- name: Test Core
run: go test core