Build infra + CLAUDE.md
Build / build (push) Successful in 10m3s

This commit is contained in:
2026-08-09 18:09:16 +02:00
parent 8af1ff6ec1
commit 012caf5672
4 changed files with 94 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Generate dashboard_gsx.go from dashboard.gsx
run: go run github.com/grindlemire/go-tui/cmd/tui generate ./...
- name: Build
run: go build -v ./...
- name: Vet
run: go vet ./...