Skip to content

feat: production-grade reconciliation, status propagation, and CI fixes #8

feat: production-grade reconciliation, status propagation, and CI fixes

feat: production-grade reconciliation, status propagation, and CI fixes #8

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint:
name: Lint (Ubuntu)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Download dependencies
run: go mod download
- name: Verify formatting
run: |
if [ "$(gofmt -l .)" != "" ]; then
echo "Code is not formatted:"
gofmt -l .
exit 1
fi
- name: Run go vet
run: go vet ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest
args: --timeout=5m