-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (90 loc) · 2.46 KB
/
ci.yml
File metadata and controls
102 lines (90 loc) · 2.46 KB
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
name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
coding-standard:
runs-on: ubuntu-latest
name: Coding Standard
steps:
- uses: actions/checkout@v5
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: php-actions/composer@v6
with:
php_version: "8.0"
- name: Check coding standard
run: composer phpcs
static-analysis:
runs-on: ubuntu-latest
name: Static Analysis
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Psalm
uses: docker://ghcr.io/psalm/psalm-github-actions
with:
args: --shepherd
test:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- version: "8.0"
phpunit: "9"
args: ""
- version: "8.1"
phpunit: "10"
args: ""
- version: "8.2"
phpunit: "10"
args: ""
- version: "8.3"
phpunit: "11"
args: ""
- version: "8.4"
phpunit: "12"
args: ""
- version: "8.5"
phpunit: "12"
args: --display-deprecations --display-phpunit-deprecations
name: "Test: PHP ${{ matrix.php.version }}"
steps:
- uses: actions/checkout@v5
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: php-actions/composer@v6
with:
dev: no
php_version: "${{ matrix.php.version }}"
- uses: php-actions/phpunit@v4
env:
XDEBUG_MODE: coverage
with:
version: "${{ matrix.php.phpunit }}"
php_version: "${{ matrix.php.version }}"
php_extensions: xdebug
args: "--coverage-text ${{ matrix.php.args }}"
rector:
runs-on: ubuntu-latest
name: Rector
steps:
- uses: actions/checkout@v5
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: php-actions/composer@v6
with:
php_version: "8.5"
- name: Check compatibility
run: composer rector