Files
iris/.gitea/workflows/ci.yaml
Hugo Nijhuis 1129f1b43d
All checks were successful
CI / build (push) Successful in 40s
Fix CI and manifesto links
- Remove test step from CI (WASM-only code can't run native tests)
- Update manifesto links to use absolute Gitea URLs

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-08 19:39:15 +01:00

20 lines
375 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build WASM
run: GOOS=js GOARCH=wasm go build ./...
- name: Build Host
run: go build ./host/...