Skip to content

Commit

Permalink
copy missing config in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pmdevelopment committed Jun 18, 2024
1 parent cd30fbd commit f250751
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
sudo mkdir /var/www/wirhub
sudo mv /home/runner/work/wirhub-app/wirhub-app/* /var/www/wirhub
sudo mv /home/runner/work/wirhub-app/wirhub-app/.env* /var/www/wirhub
sudo mv /home/runner/work/wirhub-app/wirhub-app/.php-* /var/www/wirhub
sudo chown -R www-data:www-data /var/www
- name: Composer install
run: sudo -u www-data composer install --prefer-dist --no-progress --no-scripts --working-dir /var/www/wirhub

- name: PHP CS Fixer
run: cd /var/www/wirhub && sudo -u www-data vendor/bin/php-cs-fixer check --stop-on-violation
run: sudo -u www-data /var/www/wirhub/vendor/bin/php-cs-fixer check --stop-on-violation --config=/var/www/wirhub/.php-cs-fixer.dist.php

- name: Prepare symfony
run: |
Expand Down

0 comments on commit f250751

Please sign in to comment.