mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-21 03:06:08 +02:00
Merge 174a45cc5c
into 69c1e4a000
This commit is contained in:
commit
10c040f611
1 changed files with 38 additions and 0 deletions
38
.github/workflows/linter.yml
vendored
Normal file
38
.github/workflows/linter.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
name: Lint Code Base
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
|
||||||
|
permissions: { }
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Lint Code Base
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: read
|
||||||
|
statuses: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Super-Linter
|
||||||
|
uses: super-linter/super-linter@v6.6.0
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
VALIDATE_BASH: true
|
||||||
|
VALIDATE_DOCKERFILE_HADOLINT: true
|
||||||
|
VALIDATE_ENV: true
|
||||||
|
VALIDATE_GITHUB_ACTIONS: true
|
||||||
|
VALIDATE_MARKDOWN: true
|
||||||
|
VALIDATE_PHP_BUILTIN: true
|
||||||
|
VALIDATE_PHP_PHPCS: true
|
||||||
|
VALIDATE_PHP_PHPSTAN: true
|
||||||
|
VALIDATE_PHP_PSALM: true
|
||||||
|
VALIDATE_YAML: true
|
Loading…
Add table
Reference in a new issue