Skip to content

Commit 17c075f

Browse files
committed
feat: lint the project with Super Linter
1 parent dc170d9 commit 17c075f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/workflows/ci.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: CI
23

34
on:
@@ -62,12 +63,16 @@ jobs:
6263
if: false # Remove this line if Doctrine ORM is installed
6364
run: docker compose exec -T php bin/console -e test doctrine:schema:validate
6465
lint:
65-
name: Docker Lint
66+
name: Lint
6667
runs-on: ubuntu-latest
6768
steps:
6869
-
6970
name: Checkout
7071
uses: actions/checkout@v4
72+
with:
73+
fetch-depth: 0
7174
-
72-
name: Lint Dockerfile
73-
uses: hadolint/[email protected]
75+
name: Lint Code Base
76+
uses: super-linter/super-linter@v6
77+
env:
78+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

compose.override.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Development environment override
23
services:
34
php:

compose.prod.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Production environment override
23
services:
34
php:

compose.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
services:
23
php:
34
image: ${IMAGES_PREFIX:-}app-php

0 commit comments

Comments
 (0)