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
No known key found for this signature in database
GPG Key ID: 8367AA3C6B8DF06D
2 changed files with 5 additions and 2 deletions

View File

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

View File

@ -1,6 +1,7 @@
module github.com/NVIDIA/k8s-device-plugin/deployments/devel module github.com/NVIDIA/k8s-device-plugin/deployments/devel
go 1.22.1 go 1.23
toolchain go1.23.1 toolchain go1.23.1
require ( require (