Skip to content

Update COMPONENT_VERSION to 2.10 #227

Update COMPONENT_VERSION to 2.10

Update COMPONENT_VERSION to 2.10 #227

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: KinD tests
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
main:
runs-on: ubuntu-22.04
env:
REGISTRY: localhost:5000
RUN_ON: github
strategy:
matrix:
go: [ '1.20' ]
name: KinD tests
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v3
- name: Set up go version
uses: actions/setup-go@v3
with:
go-version: '~1.20' # The Go version to download (if necessary) and use.
- run: go version
- name: Run e2e test on KinD cluster
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
echo "------> run on platform: $RUN_ON"
make -f Makefile.prow e2e
- name: Debug
if: ${{ failure() }}
run: |
kubectl get pod -A