generated from mathias/template-go-web
CD / Lint / Test / Vet (push) Successful in 5s
This is a research repo -- issue#6/#7 already decided CI should be check-only (`task check` on push/PR), no build, no image push, no deploy, since training runs are manual/GPU-bound and never CI-triggered. That never actually landed in cd.yml: it still carried the original go-web template's build+deploy jobs verbatim, still referencing the pre-rename `hostexecutor` name (`./cmd/hostexecutor` doesn't exist -- real dirs are cmd/eval, cmd/jepa-fx-risk) and a `k3s/apps/hostexecutor` deployment that was never created in infra (confirmed: no manifest exists under either name). Once the check job's own Taskfile bug was fixed, build started actually running and failing on the wrong path. Removed both jobs -- check is the only gate this repo needs.
31 lines
648 B
YAML
31 lines
648 B
YAML
name: CD
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
tags: ["v*"]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check:
|
|
name: Lint / Test / Vet
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
cache: false
|
|
|
|
- name: Install toolchain
|
|
run: |
|
|
go version
|
|
go install github.com/a-h/templ/cmd/templ@latest
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh \
|
|
| sh -s -- -b "$(go env GOPATH)/bin" v2.11.4
|
|
|
|
- name: Run checks
|
|
run: task check
|