Skip to content

feat: Add CLI subcommands for AI-native test operations (v4.0.0) #20

feat: Add CLI subcommands for AI-native test operations (v4.0.0)

feat: Add CLI subcommands for AI-native test operations (v4.0.0) #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Build
run: go build ./...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Test with coverage
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Show coverage
run: go tool cover -func=coverage.out
- name: Vet
run: go vet ./...