Skip to content

fix: crossplane provider health in sample test (#2) #10

fix: crossplane provider health in sample test (#2)

fix: crossplane provider health in sample test (#2) #10

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: build
run: go build -v ./...
- name: e2e test
run: go test -v ./e2e/... -count=1