Skip to content

feat: add AI agent skill for frontcli #13

feat: add AI agent skill for frontcli

feat: add AI agent skill for frontcli #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install tools
run: make tools
- name: Format check
run: make fmt-check
- name: Lint
run: make lint
- name: Test
run: make test
- name: Build
run: make build
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build (CGO for keychain)
run: CGO_ENABLED=1 go build -o bin/frontcli ./cmd/frontcli
- name: Test binary
run: ./bin/frontcli version