Skip to content

Commit

Permalink
Update GA
Browse files Browse the repository at this point in the history
  • Loading branch information
nasrulhazim committed Nov 14, 2024
1 parent 6bf80e9 commit 69274fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,16 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.os == 'windows-latest' && '^^^' || '' }}${{ matrix.carbon }}" --no-interaction --no-update
# Conditionally install guzzlehttp/guzzle, guzzlehttp/promises, and guzzlehttp/psr7 if Laravel 10 and PHP 8.3
if [[ "${{ matrix.laravel }}" == "10.*" && "${{ matrix.php }}" == "8.3" ]]; then
composer require guzzlehttp/guzzle guzzlehttp/promises guzzlehttp/psr7 --no-interaction
fi
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: List Installed Dependencies
run: composer show -D

- name: Execute tests
run: vendor/bin/pest --parallel --ci
run: vendor/bin/pest --ci

0 comments on commit 69274fb

Please sign in to comment.