Skip to content

Commit

Permalink
Install PHP 8.4 to test
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioribeiro committed Sep 6, 2024
1 parent 825fb06 commit a994b2d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
name: P${{ matrix.php }}

steps:
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit

- name: Checkout code
uses: actions/checkout@v3

Expand All @@ -26,6 +35,7 @@ jobs:
- name: Install dependencies
run: |
php --version
composer require --prefer-dist --no-interaction --no-suggest
- name: Execute tests
Expand Down

0 comments on commit a994b2d

Please sign in to comment.