Skip to content

chore(deps): bump google.golang.org/genai from 1.48.0 to 1.57.0 #42

chore(deps): bump google.golang.org/genai from 1.48.0 to 1.57.0

chore(deps): bump google.golang.org/genai from 1.48.0 to 1.57.0 #42

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
verify:
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: Ensure ripgrep
run: |
if ! command -v rg >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y ripgrep
fi
- name: Verify Dependencies
run: go mod verify
- name: AGENTS Contract Guard
run: ./scripts/ci/agents_guard.sh
- name: Build
run: go build -v ./...
- name: Run Tests
env:
HEIKE_RUN_E2E: "0"
run: go test -v ./...
- name: Vet
run: go vet ./...
- name: CLI Smoke Test
run: |
export HOME="$(mktemp -d)"
go build -o ./bin/heike ./cmd/heike
./bin/heike version
./bin/heike config init
./bin/heike config view > /tmp/heike-config.yaml
test -s /tmp/heike-config.yaml