Skip to content

Add .gitignore and README.md, remove tracked binaries #2

Add .gitignore and README.md, remove tracked binaries

Add .gitignore and README.md, remove tracked binaries #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.23"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Vet
run: go vet ./...
- name: Test
run: go test ./internal/... -count=1
- name: Build CLI
run: go build ./cmd/rendspec
- name: Build MCP server
run: go build ./cmd/rendspec-mcp