2024-08-27 21:33:46 +02:00
|
|
|
name: linter
|
2024-08-27 21:25:50 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2024-08-27 21:33:46 +02:00
|
|
|
gitleaks:
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Gitleaks
|
|
|
|
uses: docker://zricethezav/gitleaks:v8.18.4
|
|
|
|
with:
|
|
|
|
args: detect --no-git --verbose --source ${{ github.workspace }}
|
|
|
|
|
|
|
|
hadolint:
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run hadolint
|
|
|
|
uses: docker://pipelinecomponents/hadolint:0.26.4
|
|
|
|
with:
|
|
|
|
args: hadolint Dockerfile
|
|
|
|
|
2024-08-27 21:41:23 +02:00
|
|
|
shellcheck: # https://github.com/marketplace/actions/shellcheck
|
2024-08-27 21:25:50 +02:00
|
|
|
steps:
|
2024-08-27 21:41:23 +02:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run ShellCheck
|
2024-08-27 21:48:28 +02:00
|
|
|
uses: sudo-bot/action-shellcheck@latest
|
2024-08-27 21:46:08 +02:00
|
|
|
with:
|
2024-08-27 21:48:28 +02:00
|
|
|
cli-args: "shell.sh"
|