Skip to content

docs: update PLAN.md to reflect Phase 3 completion and project structure #13

docs: update PLAN.md to reflect Phase 3 completion and project structure

docs: update PLAN.md to reflect Phase 3 completion and project structure #13

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26.1'
- name: Download dependencies
run: go mod download
- name: Check formatting
run: |
if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then
echo "The following files need formatting:"
gofmt -l .
exit 1
fi
- name: Run tests
run: go test ./pkg/... -v -timeout 60s
- name: Build
run: go build -v .