mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-17 18:46:43 +01:00
Add Super-Linter
Signed-off-by: Tilo Spannagel <development@tilosp.de>
This commit is contained in:
parent
488378f8e8
commit
9cbb4604ab
1 changed files with 23 additions and 0 deletions
23
.github/workflows/linter.yml
vendored
Normal file
23
.github/workflows/linter.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: Lint Code Base
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: Lint Code Base
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Lint Code Base
|
||||||
|
uses: github/super-linter@v3
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
VALIDATE_BASH: true
|
||||||
|
VALIDATE_DOCKERFILE: true
|
||||||
|
VALIDATE_DOCKERFILE_HADOLINT: true
|
||||||
|
VALIDATE_ENV: true
|
||||||
|
VALIDATE_PHP_BUILTIN: true
|
||||||
|
VALIDATE_YAML: true
|
Loading…
Reference in a new issue