Skip to content

chore(deps): update dependency go to v1.23.1 #29

chore(deps): update dependency go to v1.23.1

chore(deps): update dependency go to v1.23.1 #29

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
GO_VERSION: ~1.22
jobs:
test:
name: Lint, test, build and test-e2e with KinD
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: Lint
run: make lint
- name: Unit tests
run: make test
- name: Build operator image
run: make docker-build
- name: Create KinD
uses: helm/kind-action@v1
with:
cluster_name: 'kind'
- name: E2E tests
run: make test-e2e