add go modules check for deployments/devel

Signed-off-by: Tariq Ibrahim <tibrahim@nvidia.com>
This commit is contained in:
Tariq Ibrahim
2024-09-30 12:13:56 -07:00
parent 10bafd1d09
commit 0d626cfbb7
2 changed files with 5 additions and 2 deletions

View File

@@ -49,7 +49,9 @@ jobs:
args: -v --timeout 5m
skip-cache: true
- name: Check golang modules
run: make check-vendor
run: |
make check-vendor
make -C deployments/devel check-modules
test:
name: Unit test
runs-on: ubuntu-latest