Build #946
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: Build | |
on: | |
pull_request: | |
branches: | |
- OSC-MIGRATION | |
paths: | |
- "**.go" | |
- "Dockerfile" | |
- "Makefile" | |
- "go.*" | |
- ".github/workflows/build.yml" | |
- "!tests/**" | |
push: | |
branches: [ OSC-MIGRATION ] | |
paths: | |
- "**.go" | |
- "Dockerfile" | |
- "Makefile" | |
- "go.*" | |
- ".github/workflows/build.yml" | |
- "!tests/**" | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- name: Docker Lint | |
run: bash -c "make dockerlint" | |
- name: Check | |
run: bash -c "make verify" | |
- name: Test | |
run: bash -c "make test" | |
- name: Image | |
run: bash -c "make build-image" | |
- name: Check docs | |
run: bash -c "make check-helm-docs" | |
- name: Check manifest | |
run: bash -c "make check-helm-manifest" | |
- name: Trivy-Scan | |
id: trivyscan | |
run: bash -c "make trivy-scan" | |
- name: Upload Scan if errors | |
if: ${{ failure() && github.event_name != 'pull_request' && steps.trivyscan.outcome == 'failure' }} | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: './.trivyscan/report.sarif' |