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 cb4cd0d commit 815f886Copy full SHA for 815f886
1 file changed
.github/workflows/ci.yml
@@ -1,7 +1,7 @@
1
name: CI
2
on: ['push', 'pull_request']
3
jobs:
4
- tests:
+ ci:
5
name: Unit Tests for PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
6
runs-on: ${{ matrix.os }}
7
strategy:
@@ -31,11 +31,14 @@ jobs:
31
- name: Install PHP 8.1 dependencies
32
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress
33
34
+ - name: PHP Static Analysis
35
+ run: ./vendor/bin/phpstan
36
+
37
- name: Run Tests for PHP 8.1
38
run: ./vendor/bin/pest --coverage
39
40
support:
- needs: [tests]
41
+ needs: [ci]
42
name: Discord Notification
43
runs-on: ubuntu-latest
44
steps:
0 commit comments