Skip to content

Commit

Permalink
verify manifests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
agouin committed Sep 18, 2023
1 parent c7845f9 commit 9d05c2f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/manifests.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9d05c2f

Please sign in to comment.