Skip to content

chore: readme: fix homebrew installation process + add install from s… #180

chore: readme: fix homebrew installation process + add install from s…

chore: readme: fix homebrew installation process + add install from s… #180

Workflow file for this run

name: Build and test
on: [push, workflow_dispatch, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.24.x', '1.25.x' ]
steps:
- uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get ./...
- name: Build binary
run: make
- name: Build WASM binary
run: make wasm
- name: Test with Go
run: make test