Skip to content

ci(coverage): remove || true test-masking (CLAUDE.md rule 12) (#22) #2

ci(coverage): remove || true test-masking (CLAUDE.md rule 12) (#22)

ci(coverage): remove || true test-masking (CLAUDE.md rule 12) (#22) #2

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout proto sibling (replace ../proto)
uses: actions/checkout@v4
with:
repository: ${{ vars.PROTO_REPO || format('{0}/proto', github.repository_owner) }}
token: ${{ secrets.GITHUB_TOKEN }}
path: _proto_ci
- run: mv _proto_ci ../proto
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- run: go build ./...
- run: go vet ./...
- run: go test ./... -v -race -count=1