Skip to content

Commit

Permalink
build: setup appropriate PHP version
Browse files Browse the repository at this point in the history
  • Loading branch information
Yogarine committed Feb 1, 2025
1 parent 274ce0b commit 80f02e4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ jobs:
php-version: [8.1, 8.2, 8.3, 8.4]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
coverage: xdebug

- name: Validate composer.json and composer.lock
run: composer validate --strict
Expand Down

0 comments on commit 80f02e4

Please sign in to comment.