Skip to content

chore: avoid make all outputs annoying messages when minikube is not … #133

chore: avoid make all outputs annoying messages when minikube is not …

chore: avoid make all outputs annoying messages when minikube is not … #133

Workflow file for this run

name: CICD-PUSH
on:
push:
branches:
- '*'
- '*/*'
tags-ignore:
- '*'
jobs:
make-test:
runs-on: [self-hosted, aws-eks-k8s-runner ]
steps:
- uses: actions/checkout@v3
- name: make mod-vendor and lint
run: |
mkdir -p ./bin
cp -r /go/bin/controller-gen ./bin/controller-gen
make mod-vendor
make lint
make staticcheck
- name: make test
run: |
make test
- name: upload coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./cover.out
flags: unittests
name: codecov-report
verbose: true