Skip to content

Commit c2bef8a

Browse files
committed
fix: setup package name
1 parent 6ee16d9 commit c2bef8a

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

.github/config/.hadolint.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
ignored:
3+
- DL3006
4+
- DL3008
5+
- DL3018
6+
- SC2046
7+
- DL3003
File renamed without changes.

.github/workflows/ci-quality.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)