This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
nstogner triggered system tests running on kind #198
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: System tests kind | |
run-name: ${{ github.actor }} triggered system tests running on kind | |
on: | |
pull_request: | |
push: | |
branches: | |
# Must run after docker images are built and pushed. | |
# Should run before a release. | |
- main | |
workflow_run: | |
workflows: [Docker pipeline] | |
types: | |
- completed | |
jobs: | |
system-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup Go 1.21.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.x' | |
- run: make test-system-kind |