Skip to content

chore(security): gitignore testdata/publisher.key + clarify in README #2

chore(security): gitignore testdata/publisher.key + clarify in README

chore(security): gitignore testdata/publisher.key + clarify in README #2

Workflow file for this run

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