Merge pull request #721 from NVIDIA/devel-check-modules

add go modules check for deployments/devel
This commit is contained in:
Tariq 2024-10-01 05:35:45 +08:00 committed by GitHub
commit 6ca2700a17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 (