Skip to content

Bump sigs.k8s.io/controller-runtime from 0.18.2 to 0.18.3 #73

Bump sigs.k8s.io/controller-runtime from 0.18.2 to 0.18.3

Bump sigs.k8s.io/controller-runtime from 0.18.2 to 0.18.3 #73

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go version
- name: Unittest
run: |
make test GO=go
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
integ-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go version
- name: Integration test
run: |
make integ-test GO=go
- name: Integration test kong
run: |
make integ-test-kong