-
Notifications
You must be signed in to change notification settings - Fork 0
180 lines (153 loc) · 5.64 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
# https://docs.github.com/en/actions
name: "CI"
on: # yamllint disable-line rule:truthy
push:
paths-ignore:
- "README.md"
- "LICENSE.md"
- ".scrutinizer.yml"
- ".editorconfig"
branches: ["main"]
pull_request:
paths-ignore:
- "README.md"
- "LICENSE.md"
- ".scrutinizer.yml"
- ".editorconfig"
branches: ["main"]
permissions:
contents: "read"
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
max-parallel: 2
fail-fast: false
matrix:
php-version: [
"8.1",
"8.2",
"8.3",
]
composer-param: [
"update --no-progress --prefer-dist --prefer-lowest",
"update --no-progress --prefer-dist"
]
experimental: [false]
include:
# also try a future version
- php-version: "8.4"
composer-param: "update --no-progress --prefer-dist --prefer-lowest"
experimental: true
- php-version: "8.4"
composer-param: "update --no-progress --prefer-dist"
experimental: true
name: "PHP ${{ matrix.php-version }} test"
steps:
- name: "Check if PHP ${{ matrix.php-version }} is supported"
if: "matrix.experimental == true"
run: "echo 'PHP ${{ matrix.php-version }} is experimental'"
- name: "checkout project"
uses: "actions/checkout@v4"
with:
# needed by scrutinizer
fetch-depth: 2
- name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
tools: "composer:v2"
# needed by PHPUnit code coverage
coverage: "pcov"
- name: "Validate composer.json and composer.lock"
run: "composer validate --ansi --strict"
continue-on-error: "${{ matrix.experimental }}"
- name: "Get composer cache directory"
id: "composer-cache"
run: "echo \"dir=$(composer config cache-dir)\" >> $GITHUB_OUTPUT"
continue-on-error: "${{ matrix.experimental }}"
- name: "Cache composer dependencies"
uses: "actions/cache@v4"
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: "${{ runner.os }}-composer-"
continue-on-error: "${{ matrix.experimental }}"
- name: "Install dependencies"
run: "composer ${{ matrix.composer-param }}"
continue-on-error: "${{ matrix.experimental }}"
# Run phpunit with code coverage
- name: "PHPUnit Tests"
run: "vendor/bin/phpunit --coverage-clover=coverage.clover"
continue-on-error: "${{ matrix.experimental }}"
- name: "Upload coverage reports to codecov.io"
uses: "codecov/codecov-action@v4"
with:
token: "${{ secrets.CODECOV_TOKEN }}"
slug: "teqneers/phpunit-stopwatch"
files: "coverage.clover"
# Uploading reports for analysis
- name: "Upload code-coverage to scrutinizer"
run: "vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover"
continue-on-error: "${{ matrix.experimental }}"
- name: "Publish code coverage to Code Climate"
uses: "paambaati/codeclimate-action@v5"
env:
CC_TEST_REPORTER_ID: "${{ secrets.CC_TEST_REPORTER_ID }}"
with:
coverageCommand: "vendor/bin/phpunit --coverage-clover=coverage.clover"
coverageLocations: |
coverage.clover:clover
continue-on-error: "${{ matrix.experimental }}"
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-latest"
timeout-minutes: 5
strategy:
matrix:
php-version:
- "8.3"
composer-param: ["update --no-progress --prefer-dist"]
experimental: [false]
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Lint YAML files"
uses: "ibiqlik/action-yamllint@v3"
with:
config_file: ".yamllint.yaml"
file_or_dir: "."
strict: true
- name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
tools: "composer:v2"
coverage: "none"
- name: "Get composer cache directory"
id: "composer-cache"
run: "echo \"dir=$(composer config cache-dir)\" >> $GITHUB_OUTPUT"
continue-on-error: "${{ matrix.experimental }}"
- name: "Cache composer dependencies"
uses: "actions/cache@v4"
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: "${{ runner.os }}-composer-"
continue-on-error: "${{ matrix.experimental }}"
- name: "Install dependencies"
run: "composer ${{ matrix.composer-param }}"
continue-on-error: "${{ matrix.experimental }}"
- name: "Run ergebnis/composer-normalize"
run: "composer normalize --ansi --dry-run"
- name: "Cache cache directory for friendsofphp/php-cs-fixer"
uses: "actions/cache@v4"
with:
path: ".build/php-cs-fixer"
key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.ref_name }}"
restore-keys: |
php-${{ matrix.php-version }}-php-cs-fixer-main
php-${{ matrix.php-version }}-php-cs-fixer-
- name: "Run friendsofphp/php-cs-fixer"
run: "vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.php --diff --dry-run --show-progress=dots --verbose"
# vim: syntax=yaml ts=2 sw=2 et sr softtabstop=2 autoindent