File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 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.
2121### PHP
2222
2323``` 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
2526# 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
2728# 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
2930```
3031
3132### Markdown
3233
3334``` shell
35+ docker pull peterdavehello/markdownlint
3436docker run --rm --volume $PWD :/md peterdavehello/markdownlint markdownlint --ignore vendor --ignore LICENSE.md ' **/*.md' --fix
3537docker run --rm --volume $PWD :/md peterdavehello/markdownlint markdownlint --ignore vendor --ignore LICENSE.md ' **/*.md'
3638```
@@ -43,5 +45,5 @@ Running statis code analysis on a standalone Drupal module is a bit tricky, so w
4345analysis:
4446
4547``` 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
4749```
You can’t perform that action at this time.
0 commit comments