Skip to content

feat(codegen): wire entrypoint execution into CLI and MCP generators … #59

feat(codegen): wire entrypoint execution into CLI and MCP generators …

feat(codegen): wire entrypoint execution into CLI and MCP generators … #59

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test -race ./... -count=1 -timeout 5m
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.10.1
args: ./...
- name: Govulncheck
# TODO(#5): Remove continue-on-error once govulncheck supports Go 1.25 types.
# Known panic: https://github.com/golang/go/issues/75584
continue-on-error: true
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...