We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2bb0f0 commit 488f601Copy full SHA for 488f601
.github/workflows/main.yml
@@ -4,19 +4,24 @@ on: [push]
4
5
jobs:
6
test:
7
- runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- php_version:
+ php:
11
- "8.0"
12
- "8.1"
+ runs-on: ubuntu-latest
13
+ name: PHP ${{ matrix.php }}
14
steps:
15
- uses: actions/checkout@v2
16
- uses: php-actions/composer@v6
17
with:
- php_version: ${{ matrix.php_version }}
18
+ php_version: ${{ matrix.php }}
19
+ - uses: php-actions/phpstan@v3
20
+ with:
21
22
+ path: src/
23
- uses: php-actions/phpunit@v3
24
25
26
php_extensions: pcov
27
- run: bash <(curl -s https://codecov.io/bash)
0 commit comments