@@ -22,22 +22,22 @@ jobs:
22
22
- uses : actions/checkout@v4
23
23
24
24
- name : Build the Docker image
25
- run : docker build --file Dockerfile --target build-development --tag dockerized-php:dev .
25
+ run : docker build --file Dockerfile --target build-development --tag dockerized-php-caddy :dev .
26
26
27
27
- name : Validate composer.json and composer.lock
28
- run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php:dev composer validate --ansi --working-dir=. --strict
28
+ run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php-caddy :dev composer validate --ansi --working-dir=. --strict
29
29
30
30
- name : Install PHP dependencies
31
- run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php:dev composer install --ansi --working-dir=. --no-interaction --no-progress
31
+ run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php-caddy :dev composer install --ansi --working-dir=. --no-interaction --no-progress
32
32
33
33
- name : Check Syntax
34
- run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php:dev composer check-syntax --ansi
34
+ run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php-caddy :dev composer check-syntax --ansi
35
35
36
36
- name : Check Style
37
- run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php:dev composer check-style --ansi
37
+ run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php-caddy :dev composer check-style --ansi
38
38
39
39
- name : Check PHPStan
40
- run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php:dev composer phpstan --ansi
40
+ run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php-caddy :dev composer phpstan --ansi
41
41
42
42
- name : Check PHPUnit
43
- run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php:dev composer tests --ansi
43
+ run : docker run --rm --interactive --mount type=bind,source="$(pwd)"/src,target=/var/www/html dockerized-php-caddy :dev composer tests --ansi
0 commit comments