Skip to content

tests: verify one by one to avoid timeout (#202) #823

tests: verify one by one to avoid timeout (#202)

tests: verify one by one to avoid timeout (#202) #823

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- release/**
paths-ignore:
- "*.md"
- "charts/**"
- "config/**"
pull_request:
branches:
- main
- release/**
paths-ignore:
- "*.md"
- "charts/**"
- "config/**"
permissions:
contents: read
jobs:
test:
name: Run on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
envtest_k8s_version: [1.23.5, 1.27.1, 1.31.0, 1.32.0]
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '~1.24'
- name: Running Tests
run: |
go mod tidy
make test
env:
ENVTEST_K8S_VERSION: ${{ matrix.envtest_k8s_version }}