File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 64
64
- run : bazelisk build --lockfile_mode=error //...
65
65
- run : bazelisk test --lockfile_mode=error //...
66
66
67
+ bazel_module_example :
68
+ name : bazel module example test
69
+ runs-on : ubuntu-latest
70
+ steps :
71
+ - uses : actions/checkout@v4
72
+ - uses : actions/cache@v4
73
+ with :
74
+ path : |
75
+ ~/.cache/bazel
76
+ ~/.cache/bazelisk
77
+ key : ${{ runner.os }}-bazel-cache
78
+ - run : |
79
+ # We leave the lockfile off for this. lockfile_mode=off is also
80
+ # set in the .bazelrc in the examples/bazel/ directory.
81
+ # The example directly references the local jsonnet_go module from
82
+ # its parent directory, so the hash will change on almost every
83
+ # commit anyway.
84
+ cd examples/bazel && bazelisk build --lockfile_mode=off //...
85
+
67
86
all :
68
87
name : Check all
69
88
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments