-
Notifications
You must be signed in to change notification settings - Fork 1
257 lines (224 loc) · 7.16 KB
/
ci.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
name: CI
on:
push:
branches: [ main , release/* ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
composer-validate:
name: "PHP ${{ matrix.php-version }} Composer Validate"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- '7.4'
steps:
- name: Checkout code
uses: "actions/checkout@v2"
- name: Install PHP
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
tools: composer:v2
- name: Validate composer.json
run: "composer validate --strict --no-check-lock"
php-coding-standards-test:
needs:
- composer-validate
name: "PHP ${{ matrix.php-version }} Coding Standards Tests"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- '7.4'
steps:
- name: "Checkout code"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
tools: composer:v2
- name: "Composer install"
uses: "ramsey/composer-install@v1"
with:
composer-options: "--no-scripts"
- name: Run Code Standard Test
run: composer run-script check-code-standards
php-static-analysis-test:
needs:
- composer-validate
name: "PHP ${{ matrix.php-version }} Static Analysis Tests"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- '8.0'
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v6
- name: PHPStan Test
run: composer run-script analyze
php-unit-test:
name: "PHP ${{ matrix.php-version }} Unit Tests"
needs:
- composer-validate
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
include:
- php-version: '8.0'
submit-coverage: 'yes'
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: PHP Info
run: php --version
- name: Cache Composer packages
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Unit Tests
run: composer run-script test
- name: Submit code coverage
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_API_TOKEN }}
coverage-reports: tests/output/clover.xml
php-benchmark-test:
name: "PHP ${{ matrix.php-version }} Benchmark Tests"
needs:
- composer-validate
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '7.2'
- '7.3'
- '7.4'
- '8.0'
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: Cache Composer packages
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP Benchmark Tests
run: composer run-script benchmark
php-feature-test:
name: "PHP ${{ matrix.php-version }} Feature Tests"
needs:
- composer-validate
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '7.2'
- '7.3'
- '7.4'
- '8.0'
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: Cache Composer packages
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run LuckByDice bin test
run: php ./bin/luckbydice 1d2,3d6*2+2 0
dockerfile-validate:
name: "Dockerfile Validate"
needs:
- composer-validate
- php-coding-standards-test
- php-static-analysis-test
- php-unit-test
- php-benchmark-test
- php-feature-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
failure-threshold: error
docker-hub:
name: "Push to Docker Hub"
environment: CI
needs:
- dockerfile-validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ouxsoft/luckbydice:latest
target: standard
slack-notification:
name: "Slack Notification"
runs-on: ubuntu-latest
if: always()
needs:
- composer-validate
- php-coding-standards-test
- php-static-analysis-test
- php-unit-test
- php-benchmark-test
- php-feature-test
- dockerfile-validate
- docker-hub
steps:
- name: Send message to Slack API
uses: archive/[email protected]
with:
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
slack-channel: ${{ secrets.SLACK_CHANNEL_ID }}
slack-text: |
Event "${{ github.event_name }}" in "${{ github.repository }}" by @${{ github.actor }}
Commit ${{ github.sha }}
${{ needs.composer-validate.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} Composer Validate.
${{ needs.php-coding-standards-test.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} PHP Coding Standards Tests
${{ needs.php-static-analysis-test.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} PHP Static Analysis Tests
${{ needs.php-unit-test.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} PHP Unit Tests.
${{ needs.php-benchmark-test.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} PHP Benchmark Tests.
${{ needs.php-feature-test.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} PHP Feature Tests.
${{ needs.dockerfile-validate.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} Dockerfile Validate.
${{ needs.docker-hub.result == 'success' && ':white_check_mark:' || ':no_entry_sign:' }} Docker Hub.