File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ignored :
3+ - DL3006
4+ - DL3008
5+ - DL3018
6+ - SC2046
7+ - DL3003
File renamed without changes.
Original file line number Diff line number Diff line change 1+ ---
2+ name : CI - Quality
3+
4+ on :
5+ push :
6+ branches : [main]
7+
8+ jobs :
9+ test :
10+ name : Test
11+ runs-on : ubuntu-20.04
12+
13+ steps :
14+ - name : Checkout repository
15+ uses : actions/checkout@v3
16+ with :
17+ fetch-depth : 0
18+
19+ - name : Commit Lint
20+ uses : wagoid/commitlint-github-action@v5
21+ continue-on-error : true
22+
23+ - name : Secret Detection
24+ uses : gitleaks/gitleaks-action@v2
25+ env :
26+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
27+ GITLEAKS_ENABLE_COMMENTS : true
28+ continue-on-error : false
29+
30+ - name : Hadolint
31+ uses : hadolint/hadolint-action@v3.1.0
32+ with :
33+ dockerfile : Dockerfile
34+ recursive : false
35+ config : ${{ github.workspace }}/.github/config/.hadolint.yaml
36+ verbose : true
You can’t perform that action at this time.
0 commit comments