-
Notifications
You must be signed in to change notification settings - Fork 213
158 lines (144 loc) · 4.16 KB
/
tests.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: Build and Test
on:
merge_group:
workflow_dispatch:
pull_request_target:
types:
- opened
- synchronize
push:
branches:
- main
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
authorize:
name: Authorize
environment: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
configure:
needs: authorize
name: Configure
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- id: set-matrix
run: echo "matrix=$(jq -c . < ./.github/workflows/matrix.json)" >> $GITHUB_OUTPUT
prepare:
needs: configure
name: Prepare Dependencies
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
composer-normalize:
needs: [configure, prepare]
name: Composer Normalize
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
- run: composer require --dev ergebnis/composer-normalize
- run: composer config allow-plugins.ergebnis/composer-normalize true
- run: composer normalize
composer-validate:
needs: [configure, prepare]
name: Composer Normalize
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
- run: composer validate
pest:
needs: [configure, prepare]
name: PEST
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
coverage: pcov
- if: matrix.php == '8.1'
run: vendor/bin/pest --order-by random --fail-on-risky --stop-on-defect --coverage --parallel
- if: matrix.php == '8.1'
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # [email protected]
with:
directory: ./coverage/
flags: unittestsvalidate
phpstan:
needs: [configure, prepare]
name: PHPStan
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
- run: vendor/bin/phpstan analyze --no-ansi --no-progress --debug
psalm:
needs: [configure, prepare]
name: Psalm
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
- run: vendor/bin/psalm
rector:
needs: [configure, prepare]
name: Rector
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
- run: vendor/bin/rector process --dry-run
php-cs-fixer:
needs: [configure, prepare]
name: PHP CS Fixer
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
php: ${{ matrix.php }}
- run: vendor/bin/php-cs-fixer fix --dry-run --diff --ansi --verbose