Skip to content

docs: align all docs/comments with single-address-per-order (no tag/m… #3

docs: align all docs/comments with single-address-per-order (no tag/m…

docs: align all docs/comments with single-address-per-order (no tag/m… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
CGO_ENABLED: "0" # pure-Go sqlite → static binary, no C toolchain needed
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.26"
check-latest: true
- name: Verify modules are tidy
run: |
go mod download
go mod verify
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... # live testnet integration self-skips without NEVERPAY_TESTNET_IT
- name: Build (stripped static binary)
run: go build -trimpath -ldflags="-s -w" -o neverpay .