-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: mehabhalodiya <[email protected]>
- Loading branch information
1 parent
4ec2bde
commit bce18f4
Showing
5 changed files
with
120 additions
and
54 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,19 @@ | ||
# See http://docs.codecov.io/docs/coverage-configuration | ||
coverage: | ||
precision: 2 # 2 = xx.xx%, 0 = xx% | ||
round: down | ||
# For example: 20...60 would result in any coverage less than 20% | ||
# would have a red background. The color would gradually change to | ||
# green approaching 60%. Any coverage over 60% would result in a | ||
# solid green color. | ||
range: "20...60" | ||
|
||
status: | ||
# project will give us the diff in the total code coverage between a commit | ||
# and its parent | ||
project: yes | ||
# Patch gives just the coverage of the patch | ||
patch: yes | ||
# changes tells us if there are unexpected code co verage changes in other files | ||
# which were not changed by the diff | ||
changes: yes | ||
# allow test coverage to drop by 0.1%, assume that it's typically due to CI problems | ||
patch: | ||
default: | ||
threshold: 0.1 | ||
project: | ||
default: | ||
threshold: 0.1 | ||
|
||
# See http://docs.codecov.io/docs/ignoring-paths | ||
ignore: | ||
- "api/v1alpha1/*" | ||
- "build/*" | ||
- "common/*" | ||
- "hack/*" | ||
- "openshift-ci/*" | ||
- "vendor/.*" | ||
- "version/*" | ||
- "Makefile" | ||
- ".travis.yml" | ||
|
||
# See http://docs.codecov.io/docs/pull-request-comments-1 | ||
comment: | ||
layout: "diff, files" | ||
behavior: "" | ||
# default = posts once then update, posts new if delete | ||
# once = post once then updates | ||
# new = delete old, post new | ||
# spammy = post new |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Go | ||
on: | ||
push: | ||
branches: | ||
- "master" | ||
pull_request: | ||
branches: | ||
- "master" | ||
env: | ||
# Golang version to use across CI steps | ||
GOLANG_VERSION: '1.20' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
event_file: | ||
name: "Event File" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Event File | ||
path: ${{ github.event_path }} | ||
|
||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: ${{ env.GOLANG_VERSION }} | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
|
||
- name: Restore go build cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/go-build | ||
key: ${{ runner.os }}-go-build-v1-${{ github.run_id }} | ||
|
||
- name: Download all Go modules | ||
run: | | ||
go mod download | ||
- name: Generate code coverage artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: code-coverage | ||
path: coverage.out | ||
|
||
- name: Upload code coverage information to codecov.io | ||
uses: codecov/[email protected] | ||
with: | ||
file: coverage.out |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Go Test on Pull Requests | ||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
paths: | ||
- '**.go' | ||
workflow_dispatch: | ||
jobs: | ||
gosec: | ||
name: Check GO security | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Run Gosec Security Scanner | ||
uses: securego/gosec@master | ||
with: | ||
args: -exclude-generated ./... | ||
env: | ||
GOROOT: "" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,17 @@ on: | |
pull_request: | ||
branches: | ||
- master | ||
- 'v*.*' | ||
|
||
env: | ||
GO111MODULE: on | ||
SDK_VERSION: "1.17.0" | ||
MINIKUBE_WANTUPDATENOTIFICATION: false | ||
MINIKUBE_WANTREPORTERRORPROMPT: false | ||
K8S_VERSION: "1.21.3" | ||
MINIKUBE_VERSION: "1.26.0" | ||
OLM_VERSION: "0.22.0" | ||
TEST_ACCEPTANCE_CLI: "kubectl" | ||
TEST_RESULTS: "out/acceptance-tests" | ||
|
||
jobs: | ||
lint: | ||
|
@@ -26,10 +36,6 @@ jobs: | |
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run linters | ||
run: make lint | ||
|
||
|
||
unit: | ||
name: Unit Tests with Code coverage | ||
runs-on: ubuntu-20.04 | ||
|
@@ -44,29 +50,11 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Unit Tests with Code Coverage | ||
run: | | ||
make test | ||
run: ./scripts/openshiftci-presubmit-unittests.sh | ||
|
||
- name: Upload Code Coverage Report | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
file: cover.out | ||
file: coverage.out | ||
verbose: true | ||
fail_ci_if_error: true | ||
|
||
source-scan: | ||
name: Gosec code scanning | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run gosec | ||
uses: securego/[email protected] | ||
with: | ||
args: '-no-fail -fmt sarif -out gosec.sarif ./...' | ||
|
||
- name: Upload gosec scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: 'gosec.sarif' |
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