Skip to content

Commit

Permalink
Fixed PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
little-apps committed Jun 1, 2024
1 parent 034702c commit 397fee4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ on:

jobs:
phpstan:
name: phpstan
name: phpstan - ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2]
steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: ${{ matrix.php }}
coverage: none

- name: Install composer dependencies
Expand Down

0 comments on commit 397fee4

Please sign in to comment.