Skip to content

Update README to indicate migration to Forgejo #37

Update README to indicate migration to Forgejo

Update README to indicate migration to Forgejo #37

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Go test
run: go test ./...
tinygo-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- uses: acifani/setup-tinygo@v2
with:
tinygo-version: "0.40.1"
- name: Build http-check
run: |
cd examples/http-check
tinygo build -o plugin.wasm -target=wasi ./
- name: Build tcp-check
run: |
cd examples/tcp-check
tinygo build -o plugin.wasm -target=wasi ./
- name: Build udp-check
run: |
cd examples/udp-check
tinygo build -o plugin.wasm -target=wasi ./
- name: Build widgets-check
run: |
cd examples/widgets-check
tinygo build -o plugin.wasm -target=wasi ./