Skip to content

Commit 1f3b16a

Browse files
author
Jonathan Yu
authored
chore: run with multiple kubernetes versions (#171)
1 parent 12a7e84 commit 1f3b16a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,15 @@ jobs:
6464
# Integration test: deploy into a local kind cluster
6565
integration-kind:
6666
runs-on: ubuntu-20.04
67-
name: "integration/kind"
67+
name: "integration/kind/${{ matrix.tag }}"
68+
strategy:
69+
fail-fast: false
70+
matrix:
71+
# Image tags for kindest/node to run
72+
tag:
73+
- v1.20.7
74+
- v1.21.2
75+
- v1.22.2
6876
steps:
6977
- name: Cancel previous runs
7078
uses: styfle/cancel-workflow-action@0.9.1
@@ -78,6 +86,8 @@ jobs:
7886

7987
- name: Start kind cluster
8088
uses: container-tools/kind-action@v1
89+
with:
90+
node_image: "docker.io/kindest/node:${{ matrix.tag }}"
8191

8292
- name: Show environment data
8393
run: |

0 commit comments

Comments
 (0)