mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-20 13:25:09 +01:00
Update linter.yml
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
9cbb4604ab
commit
4aa61c067c
1 changed files with 20 additions and 4 deletions
24
.github/workflows/linter.yml
vendored
24
.github/workflows/linter.yml
vendored
|
@ -4,20 +4,36 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
|
|
||||||
|
permissions: { }
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Lint Code Base
|
name: Lint Code Base
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: read
|
||||||
|
statuses: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout code
|
||||||
- name: Lint Code Base
|
- uses: actions/checkout@v4
|
||||||
uses: github/super-linter@v3
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Super-Linter
|
||||||
|
uses: super-linter/super-linter@v6.6.0
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
VALIDATE_BASH: true
|
VALIDATE_BASH: true
|
||||||
VALIDATE_DOCKERFILE: true
|
|
||||||
VALIDATE_DOCKERFILE_HADOLINT: true
|
VALIDATE_DOCKERFILE_HADOLINT: true
|
||||||
VALIDATE_ENV: true
|
VALIDATE_ENV: true
|
||||||
|
VALIDATE_GITHUB_ACTIONS: true
|
||||||
|
VALIDATE_MARKDOWN: true
|
||||||
VALIDATE_PHP_BUILTIN: true
|
VALIDATE_PHP_BUILTIN: true
|
||||||
|
VALIDATE_PHP_PHPCS: true
|
||||||
|
VALIDATE_PHP_PHPSTAN: true
|
||||||
|
VALIDATE_PHP_PSALM: true
|
||||||
VALIDATE_YAML: true
|
VALIDATE_YAML: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue