Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

chore: update kommons dependency #193

chore: update kommons dependency

chore: update kommons dependency #193

Workflow file for this run

on: [push]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.16.x]
platform: [ubuntu-latest]
k8s:
- v1.18.6
- v1.20.7
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
env:
KUBERNETES_VERSION: ${{matrix.k8s}}
run: ./test/e2e.sh
- name: Export logs
if: always()
run: kind --name kind-kind export logs ./logs
- name: Upload logs
if: always()
uses: actions/upload-artifact@v2
with:
name: log
path: ./logs