chore(security): gitignore testdata/publisher.key + clarify in README #2
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: Test | |
| # CI runs `go test ./...` on every push and PR. Note: tests are RED on | |
| # `main` by design — the verifier stub is the booth-demo bug. See README.md. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: go test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.22" | |
| - name: build | |
| run: go build ./... | |
| - name: test | |
| run: go test ./... -v |