Skip to content

fix(loop): deliver recovered tool-panic message to the LLM + review c… #424

fix(loop): deliver recovered tool-panic message to the LLM + review c…

fix(loop): deliver recovered tool-panic message to the LLM + review c… #424

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: build
run: go build -o /tmp/odek-test github.com/BackendStack21/odek/cmd/odek && chmod +x /tmp/odek-test
- name: test
run: ODEK_BINARY=/tmp/odek-test go test ./... -short -race -coverprofile=coverage.out -covermode=atomic -count=1
- name: coverage
run: go tool cover -func=coverage.out
- name: vet
run: go vet ./...