Skip to content

build: install goimports before generate, so make generate stops dying #12

build: install goimports before generate, so make generate stops dying

build: install goimports before generate, so make generate stops dying #12

Workflow file for this run

name: CI
# Minimal CI using only first-party actions (actions/*). Proves the generated
# Upjet provider (CRDs + controllers) compiles and vets. Full xpkg build/publish
# runs from the release path, not here.
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: "1.26"
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... 2>&1 | tail -40