Skip to content

Commit 6ca2700

Browse files
authored
Merge pull request #721 from NVIDIA/devel-check-modules
add go modules check for deployments/devel
2 parents 10bafd1 + 0d626cf commit 6ca2700

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/golang.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
args: -v --timeout 5m
5050
skip-cache: true
5151
- name: Check golang modules
52-
run: make check-vendor
52+
run: |
53+
make check-vendor
54+
make -C deployments/devel check-modules
5355
test:
5456
name: Unit test
5557
runs-on: ubuntu-latest

deployments/devel/go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/NVIDIA/k8s-device-plugin/deployments/devel
22

3-
go 1.22.1
3+
go 1.23
4+
45
toolchain go1.23.1
56

67
require (

0 commit comments

Comments
 (0)