File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,18 @@ below to run the checks locally.
21
21
### PHP
22
22
23
23
``` shell
24
- docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.1-fpm composer install
24
+ # Update to make sure that we use the latest versions of tools.
25
+ docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.3-fpm composer update
25
26
# Fix (some) coding standards issues
26
- docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.1 -fpm composer coding-standards-apply
27
+ docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.3 -fpm composer coding-standards-apply
27
28
# Check that code adheres to the coding standards
28
- docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.1 -fpm composer coding-standards-check
29
+ docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.3 -fpm composer coding-standards-check
29
30
```
30
31
31
32
### Markdown
32
33
33
34
``` shell
35
+ docker pull peterdavehello/markdownlint
34
36
docker run --rm --volume $PWD :/md peterdavehello/markdownlint markdownlint --ignore vendor --ignore LICENSE.md ' **/*.md' --fix
35
37
docker run --rm --volume $PWD :/md peterdavehello/markdownlint markdownlint --ignore vendor --ignore LICENSE.md ' **/*.md'
36
38
```
@@ -43,5 +45,5 @@ Running statis code analysis on a standalone Drupal module is a bit tricky, so w
43
45
analysis:
44
46
45
47
``` shell
46
- docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.1 -fpm ./scripts/code-analysis
48
+ docker run --rm --volume ${PWD} :/app --workdir /app itkdev/php8.3 -fpm ./scripts/code-analysis
47
49
```
You can’t perform that action at this time.
0 commit comments