-
Notifications
You must be signed in to change notification settings - Fork 8
55 lines (53 loc) · 1.28 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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'