Skip to content

Commit

Permalink
Run Psalm with PHP 7.3 & 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
merkushin committed Aug 16, 2023
1 parent b0806dc commit 9e4475e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
tests:
name: Psalm
runs-on: ubuntu-latest
strategy:
fail-fast: true
max-parallel: 10
matrix:
php: ['7.3', '8.2']
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -31,7 +36,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
php-version: ${{ matrix.php }}
tools: composer
coverage: none

Expand Down

0 comments on commit 9e4475e

Please sign in to comment.