Skip to content

2.3.0-rc.3

2.3.0-rc.3 #69

Workflow file for this run

---
name: CI
on:
pull_request:
push:
branches: [main]
release:
types: [created]
permissions:
contents: read
jobs:
test:
name: Go tests (SQLite)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Run tests
run: make test
smoke:
name: Release smoke (GraphQL + REST + gRPC + MCP)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
# Black-box end-to-end pass over every public API surface against the
# freshly built binary (see internal/e2e/smoke_test.go).
- name: Run smoke tests
run: make smoke