chore: avoid make all outputs annoying messages when minikube is not … #133
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |