This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
210 lines (170 loc) · 6.11 KB
/
pr-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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# GitHub Actions Documentation: https://docs.github.com/en/actions
name: "Run CI Tests [PRs]"
on:
pull_request:
branches:
- "main"
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref_type }}-${{ github.ref }}-${{ github.sha }}
cancel-in-progress: true
env:
COMPOSER_ROOT_VERSION: "1.99.99"
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
jobs:
coding-standards:
name: "Coding standards"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "latest"
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2.1"
- name: "Check syntax (php-parallel-lint)"
shell: "bash"
run: "composer dev-lint-syntax"
- name: "Check coding standards (PHP_CodeSniffer)"
shell: "bash"
run: "composer dev-lint-style"
static-analysis:
name: "Static analysis"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "latest"
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2.1"
- name: "Statically analyze code (PHPStan)"
shell: "bash"
run: "composer dev-analyze-phpstan"
- name: "Statically analyze code (Psalm)"
shell: "bash"
run: "composer dev-analyze-psalm -- --shepherd"
security-analysis:
name: "Security analysis"
needs: ["coding-standards", "static-analysis"]
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "latest"
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2.1"
- name: "Analyze security of code (Psalm)"
shell: "bash"
run: "./vendor/bin/psalm --taint-analysis --report=build/logs/psalm.sarif"
- name: "Upload security analysis results to GitHub"
uses: "github/codeql-action/upload-sarif@v2"
with:
sarif_file: "build/logs/psalm.sarif"
code-coverage:
name: "Code coverage"
needs: ["coding-standards", "static-analysis"]
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v3"
- name: "Setup NodeJS"
uses: "actions/setup-node@v3"
with:
node-version: '16'
cache: 'npm'
cache-dependency-path: packages/kickflip-docs/package-lock.json
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "latest"
coverage: "pcov"
ini-values: "memory_limit=-1,pcov.directory=packages"
- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2.1"
- name: "Setup and build node deps"
run: "cd packages/kickflip-docs && npm install && npm run dev && cd"
- name: "Run unit tests (PHPUnit)"
shell: "bash"
run: "composer dev-test-coverage-ci"
- name: "Publish coverage report to Codecov"
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./build/coverage
- name: "Publish coverage report to CodeClimate"
uses: "paambaati/codeclimate-action@v3.2.0"
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_TOKEN }}
with:
coverageLocations: |
${{github.workspace}}/build/coverage/clover.xml:clover
${{github.workspace}}/build/coverage/cobertura.xml:cobertura
unit-tests:
name: "Unit tests - P${{ matrix.php-version }} - ${{ matrix.dependencies }} - ${{ matrix.operating-system }}"
needs: ["code-coverage", "security-analysis"]
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
php-version:
- "8.0"
- "8.1"
operating-system:
- "macos-latest"
- "ubuntu-latest"
- "windows-latest"
dependencies:
- "lowest"
- "highest"
steps:
- name: "Configure Git (for Windows)"
if: ${{ matrix.operating-system == 'windows-latest' }}
shell: "bash"
run: |
git config --system core.autocrlf false
git config --system core.eol lf
- name: "Checkout repository"
uses: "actions/checkout@v3"
- name: "Setup NodeJS"
uses: "actions/setup-node@v3"
with:
node-version: '16'
cache: 'npm'
cache-dependency-path: packages/kickflip-docs/package-lock.json
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
extensions: fileinfo, filter, json
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/composer-install@v2.1"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ matrix.composer-options }}"
- name: "Setup and build node deps"
run: "cd packages/kickflip-docs && npm install && npm run dev && cd"
- name: "Run unit tests (paratest)"
shell: "bash"
run: "./vendor/bin/paratest --testsuite Unit --no-coverage"
- name: "Run Plugin Unit tests (paratest)"
shell: "bash"
run: "composer dev-test-unit -- --testsuite PluginsTests --no-coverage"
- name: "Run Feature tests (PHPUnit)"
shell: "bash"
run: "composer dev-test-unit -- --testsuite Features --no-coverage"
- name: "Run Docs Site tests (PHPUnit)"
shell: "bash"
run: "composer dev-test-unit -- --testsuite DocsSiteTests --no-coverage"