Skip to content

Commit 9c7ba61

Browse files
committed
- bump dependencies
- added phpstan 8.1 CI steps - documentation fix
1 parent fea435a commit 9c7ba61

File tree

3 files changed

+208
-212
lines changed

3 files changed

+208
-212
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,20 @@ jobs:
2626
name: PHPStan
2727

2828
runs-on: ubuntu-latest
29-
29+
strategy:
30+
matrix:
31+
php-versions: ['7.4', '8.1']
3032
steps:
3133
- uses: actions/checkout@v2
3234
- uses: php-actions/composer@v5
3335
with:
34-
php_version: 7.4
36+
php_version: ${{ matrix.php-versions }}
3537

3638
- name: PHPStan Static Analysis
3739
uses: php-actions/phpstan@v3
3840
with:
3941
path: src/
40-
php_version: 7.4
42+
php_version: ${{ matrix.php-versions }}
4143

4244
build-test:
4345
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)