Skip to content

Reduce low-verbosity runner noise and improve test summaries #118

Reduce low-verbosity runner noise and improve test summaries

Reduce low-verbosity runner noise and improve test summaries #118

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: make build
- name: Run tests
run: make test
- name: Validate test suites
run: make suite-validate
- name: Check generated methods spec doc is up-to-date
run: |
make specgen
if ! git diff --exit-code -- docs/methods-spec.md; then
echo "Generated methods spec doc is out of date. Run 'make specgen' and commit the updated docs/methods-spec.md."
exit 1
fi