From 47abb22b660197b7b1f5f7fd0061a95f5042ba11 Mon Sep 17 00:00:00 2001 From: Arthur Outhenin-Chalandre Date: Fri, 19 Sep 2025 11:25:03 +0200 Subject: [PATCH] ci: run verify-all in CI We already had a check script but we unfortunately never executed it so far... This would force contributors in PR to make sure they have run `make generate` or `make manifests`, make sure files are linted etc. Signed-off-by: Arthur Outhenin-Chalandre --- .github/workflows/verify-all.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/verify-all.yml diff --git a/.github/workflows/verify-all.yml b/.github/workflows/verify-all.yml new file mode 100644 index 0000000..8b5ccfc --- /dev/null +++ b/.github/workflows/verify-all.yml @@ -0,0 +1,20 @@ +--- +name: Verify all +on: + pull_request: {} + push: + branches: + - master +jobs: + verify-all: + runs-on: ubuntu-latest + steps: + - name: Install Go + uses: actions/setup-go@v6.0.0 + with: + go-version: 1.25.1 + - name: Checkout code + uses: actions/checkout@v5.0.0 + with: + persist-credentials: false + - run: ./hack/verify-all.sh -v