Skip to content

Commit 44d772c

Browse files
author
lapaliv
committed
debug
1 parent 98a04e8 commit 44d772c

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.github/workflows/phpunit.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PHPUnit & PHPStan
1+
name: PHPUnit
22

33
on: [push]
44

@@ -9,8 +9,17 @@ jobs:
99
phpunit:
1010
runs-on: ubuntu-latest
1111

12+
strategy:
13+
matrix:
14+
include:
15+
- php: '8.0'
16+
- php: '8.1'
17+
- php: '8.2'
1218
steps:
13-
- uses: actions/checkout@v3
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 2
1423

1524
- name: Copy .env
1625
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
@@ -25,7 +34,9 @@ jobs:
2534
- name: Setup PHP
2635
uses: shivammathur/setup-php@v2
2736
with:
28-
php-version: 8.0
37+
coverage: "none"
38+
php-version: "${{ matrix.php }}"
39+
tools: flex
2940

3041
- name: Install dependencies
3142
run: composer install --prefer-dist --no-progress

.github/workflows/psalm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PHPUnit & PHPStan
1+
name: Psalm
22

33
on: [push]
44

0 commit comments

Comments
 (0)