Skip to content

Commit

Permalink
add php 8.3 test to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jiripudil committed May 14, 2024
1 parent 342155b commit 0717f67
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
php-version:
- '8.1'
- '8.2'
- '8.3'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
Expand All @@ -26,21 +27,21 @@ jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.3'
coverage: none
- run: composer install --no-interaction
- run: composer run phpstan

linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: '8.3'
coverage: none
- run: composer install --no-interaction
- run: composer run lint

0 comments on commit 0717f67

Please sign in to comment.