Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ jobs:
# Integration test: deploy into a local kind cluster
integration-kind:
runs-on: ubuntu-20.04
name: "integration/kind"
name: "integration/kind/${{ matrix.tag }}"
strategy:
fail-fast: false
matrix:
# Image tags for kindest/node to run
tag:
- v1.20.7
- v1.21.2
- v1.22.2
steps:
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.9.1
Expand All @@ -78,6 +86,8 @@ jobs:

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

- name: Show environment data
run: |
Expand Down