docs: align all docs/comments with single-address-per-order (no tag/m… #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 . |