Skip to content

Update chart and docs for release #38

Update chart and docs for release

Update chart and docs for release #38

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ "main" ]
jobs:
unit:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.9'
- name: Test
run: make test-run-unit
integration:
name: Run integration tests
runs-on: ubuntu-latest
strategy:
matrix:
arg:
- '1.31'
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.9'
- name: Set up Kind
uses: helm/[email protected]
with:
install_only: true
version: v0.25.0
- name: Test with Kubernetes ${{ matrix.arg }}
env:
MAX_PARALLELISM: 2 # Constrained to 2 CPUs on ubuntu-latest
run: make test-run-int-verbose KUBE_VERSION=${{ matrix.arg }}
helm:
name: Run Helm tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Test
run: make test-run-helm