From 9d05c2f3ee57f949a20d4aa09a3b848de8ab293b Mon Sep 17 00:00:00 2001 From: Andrew Gouin Date: Mon, 18 Sep 2023 17:36:38 -0600 Subject: [PATCH] verify manifests in CI --- .github/workflows/manifests.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/manifests.yaml diff --git a/.github/workflows/manifests.yaml b/.github/workflows/manifests.yaml new file mode 100644 index 00000000..99899f79 --- /dev/null +++ b/.github/workflows/manifests.yaml @@ -0,0 +1,22 @@ +name: Verify Manifests + +on: + push: + branches: + - main + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: '>=1.20.2' + - run: make generate manifests + + - uses: CatChen/check-git-status-action@v1 + with: + fail-if-not-clean: true