Skip to content

Make ingressClassName configurable #71

Make ingressClassName configurable

Make ingressClassName configurable #71

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [synchronize, opened, reopened]
branches: ['main']
jobs:
PR:
name: Pull Request
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run lint
run: make lint
- uses: actions/setup-go@v4
with:
go-version: '^1.21.0'
cache-dependency-path: go.sum
- name: Check Go Formatting
run: |
files=$(gofmt -l ./test) && echo $files && [ -z "$files" ]
- name: Golang CI Lint
uses: golangci/golangci-lint-action@v3
- name: Run unit tests
run: make test-unit
- name: Setup BATS
uses: mig4/setup-bats@v1
with:
bats-version: 1.10.0
- name: Run integration tests
run: make test-integration