From 28aa96e973c4ea50d98c6a42ac7f4a9757c170e3 Mon Sep 17 00:00:00 2001 From: dmathieu Date: Wed, 26 Apr 2023 14:37:28 +0200 Subject: [PATCH] check update-modules in CI to prevent regressions discovered late --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1a90ed31..afa9d5c79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,20 @@ jobs: - name: Unit tests run: make test + check-update-modules: + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: stable + cache: true + cache-dependency-path: '**/go.sum' + - name: Check Update Modules Command + run: make update-modules + + coverage: runs-on: ubuntu-latest timeout-minutes: 20