Skip to content

cleanup: remove unused footer functions, tidy whitespace #1

cleanup: remove unused footer functions, tidy whitespace

cleanup: remove unused footer functions, tidy whitespace #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Format
run: test -z "$(gofmt -l .)"
- name: Vet
run: go vet ./...
- name: Test
run: go test -race ./...
- name: Build
run: go build -o agentmux ./cmd/agentmux
- name: Smoke test
run: |
./agentmux --version
./agentmux list || true