Skip to content

fix finalizer removal logic for ingresses #330

fix finalizer removal logic for ingresses

fix finalizer removal logic for ingresses #330

Workflow file for this run

#
# OCI Native Ingress Controller
#
# Copyright (c) 2023 Oracle America, Inc. and its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
#
name: Unit Tests
on:
pull_request: { }
push: { }
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: build the binary
run: |
go build -mod vendor -a -o dist/onic ./main.go
- name: Run Unit Tests
run: |
go test -covermode=count -coverprofile=profile.cov.tmp $(go list ./pkg/... | grep -v /server)
cat profile.cov.tmp | grep -v /pkg/util/testutil.go > profile.cov
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
GO111MODULE=off go get github.com/mattn/goveralls
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github