We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eac03d5 commit f89dac2Copy full SHA for f89dac2
1 file changed
.github/workflows/test-deploy-k8s.yml
@@ -8,6 +8,10 @@ on:
8
branches:
9
- '*'
10
11
+# Note: this test depends on having kind installed in the runner environment.
12
+# It turns out that kind is pre-installed in the ubuntu-latest. It may be worthwhile
13
+# checking which version is installed in the event that unexplained test failures occur.
14
+
15
jobs:
16
test:
17
name: "Run k8s deploy test suite"
@@ -21,6 +25,8 @@ jobs:
21
25
python-version: '3.12'
22
26
- name: "Print Python version"
23
27
run: python3 --version
28
+ - name: "Print kind version"
29
+ run: kind version
24
30
- name: "Install shiv"
31
run: pip install shiv
32
- name: "Generate build version file"
0 commit comments