We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f70a609 commit 046da26Copy full SHA for 046da26
.github/workflows/test.yml
@@ -234,3 +234,28 @@ jobs:
234
retry_on: error
235
max_attempts: 3
236
command: ./hack/test-upgrade.sh ${{ matrix.oldver }} ${{ github.sha }}
237
+
238
+ vz:
239
+ name: "vz"
240
+ runs-on: macos-13
241
+ timeout-minutes: 120
242
+ steps:
243
+ - uses: actions/setup-go@v4
244
+ with:
245
+ go-version: 1.20.x
246
+ - uses: actions/checkout@v3
247
248
+ fetch-depth: 1
249
+ - name: Make
250
+ run: make
251
+ - name: Install
252
+ run: make install
253
+ - name: Install test dependencies
254
+ run: brew install qemu bash coreutils
255
+ - name: Cache ~/Library/Caches/lima/download
256
+ uses: actions/cache@v3
257
258
+ path: ~/Library/Caches/lima/download
259
+ key: ${{ runner.os }}-vz
260
+ - name: Test
261
+ run: ./hack/test-example.sh examples/experimental/vz.yaml
0 commit comments