Skip to content

Commit

Permalink
install dependencies
Browse files Browse the repository at this point in the history
jakoch committed Jun 26, 2024
1 parent 2fbef12 commit 3c3f199
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -39,14 +39,17 @@ jobs:
- name: ✅ PHP lint
run: find . -path ./vendor -prune -o -type f -name '*.php' ! -name "test_with_parse_error.php" -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )

- name: 🔴🟢🟢🟢 Test
run: vendor/bin/phpunit --configuration ./tests/phpunit.xml.dist

- name: Update Composer
run: |
composer self-update
composer diagnose
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: 🔴🟢🟢🟢 Test
run: vendor/bin/phpunit --configuration ./tests/phpunit.xml.dist

# This tests the installation of the installer using require "dev-main",
# along with the installation of the latest version of PhantomJS.
- name: Installer "dev-main" installs latest PhantomJS version

0 comments on commit 3c3f199

Please sign in to comment.