-
Notifications
You must be signed in to change notification settings - Fork 12
48 lines (43 loc) · 1.54 KB
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: E2E
on:
pull_request:
jobs:
e2e:
runs-on: ubuntu-latest
strategy:
matrix:
include:
-
repo: shipmonk-rnd/doctrine-mysql-index-hints
-
repo: shipmonk-rnd/doctrine-two-phase-migrations
-
repo: shipmonk-rnd/phpstan-rules
-
repo: shipmonk-rnd/phpstan-baseline-per-identifier
-
repo: shipmonk-rnd/input-mapper
php: 8.3
fail-fast: false
steps:
-
name: Clone ${{ matrix.repo }}
uses: actions/checkout@v4
with:
repository: ${{ matrix.repo }}
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php || '8.4' }}
ini-file: development
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
name: Update Dead Code Detector
run: |
composer config repositories.pr vcs https://github.com/${{ github.event.pull_request.head.repo.full_name }}
composer require --dev shipmonk/dead-code-detector:dev-${{ github.head_ref }} --with-all-dependencies
-
name: Run analysis
run: vendor/bin/phpstan -vvv --ansi