Skip to content

Commit

Permalink
ci: Fix newlines for multiline run commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Mar 6, 2023
1 parent 7eb8e0f commit 387a93c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ jobs:
- name: Install Dependencies
run: composer install --no-scripts --no-ansi --no-interaction --no-progress
- name: Validate monorepo
run: >
run: |
vendor/bin/monorepo-builder validate
- name: Run unit tests
run: >
run: |
vendor/bin/atoum -d ./lib/Documents/tests
vendor/bin/atoum -f ./lib/EntityGenerator/tests/units/*
- name: Run PHP Code Sniffer
run: >
run: |
php -d "memory_limit=-1" vendor/bin/phpcbf -p ./lib/DocGenerator/src
php -d "memory_limit=-1" vendor/bin/phpcbf -p ./lib/Documents/src
php -d "memory_limit=-1" vendor/bin/phpcbf -p ./lib/DtsGenerator/src
Expand All @@ -60,10 +60,10 @@ jobs:
php -d "memory_limit=-1" vendor/bin/phpcbf -p ./lib/RoadizUserBundle/src
php -d "memory_limit=-1" vendor/bin/phpcbf -p ./lib/Rozier/src
- name: Run PHP Stan
run: >
run: |
php -d "memory_limit=-1" vendor/bin/phpstan analyse -c phpstan.neon
- name: Run Twig lint
run: >
run: |
php -d "memory_limit=-1" bin/console lint:twig ./lib/Rozier/src/Resources/views
php -d "memory_limit=-1" bin/console lint:twig ./lib/Documents/src/Resources/views
php -d "memory_limit=-1" bin/console lint:twig ./lib/RoadizUserBundle/templates
Expand Down

0 comments on commit 387a93c

Please sign in to comment.