-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (60 loc) · 1.73 KB
/
ci.yaml
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
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
phpstan:
name: PHPStan analysis
runs-on: ${{ matrix.image }}
strategy:
fail-fast: false
matrix:
image: [ubuntu-20.04]
php: ["8.1", "8.2", "8.3"]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: pmmp/[email protected]
with:
php-version: ${{ matrix.php }}
install-path: "./bin"
pm-version-major: "5"
- name: Restore Composer package cache
uses: actions/cache@v3
with:
path: |
~/.cache/composer/files
~/.cache/composer/vcs
key: "composer-v2-cache-${{ matrix.php }}-${{ hashFiles('./composer.lock') }}"
restore-keys: |
composer-v2-cache-
- name: Run PHPStan
run: make phpstan
codestyle:
name: Code Style checks
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup PHP and tools
run: make php/install
- name: Run PHP-CS-Fixer
run: make cs/diff
unittests:
name: Unit tests
runs-on: ${{ matrix.image }}
strategy:
fail-fast: false
matrix:
image: [ubuntu-20.04]
suittest: ["normal", "with_plugin", "no_test"]
php: ["8.1", "8.2", "8.3"]
pmmp: ["5.16.0"]
steps:
- uses: actions/checkout@v4
- name: Setup PHP and tools
run: make php/install
- name: Run PHPUnit
run: export SUITE_TEST=${{ matrix.suittest }} && export PHP_VERSION=${{ matrix.php }} && export PMMP_TAG=${{ matrix.pmmp }} && make suitetest