Skip to content

provider: re-pin terraform-provider-busbar to v0.2.3 for the v0.1.1 r… #13

provider: re-pin terraform-provider-busbar to v0.2.3 for the v0.1.1 r…

provider: re-pin terraform-provider-busbar to v0.2.3 for the v0.1.1 r… #13

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