Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 931 Bytes

README.md

File metadata and controls

46 lines (38 loc) · 931 Bytes

kubebuilder-workflows test

This provides the reusable workflows for a Kubebuilder project.

Getting Started

name: go

on:
  pull_request:
    paths:
      - .github/workflows/go.yaml
      - go.*
      - '**/*.go'
      - Makefile
  push:
    branches:
      - main
    paths:
      - .github/workflows/go.yaml
      - go.*
      - '**/*.go'
      - Makefile

jobs:
  go:
    uses: int128/kubebuilder-workflows/.github/workflows/go.yaml@v1
    with:
      go-version: 1.20.3
      golangci-lint-version: v1.52.2
name: manifest

on:
  pull_request:
    paths:
      - config/**
      - .github/workflows/manifest.yaml

jobs:
  manifest:
    uses: int128/kubebuilder-workflows/.github/workflows/manifest.yaml@v1