-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (41 loc) · 1.17 KB
/
build.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
name: Build
on:
pull_request:
push:
branches:
- "master"
jobs:
MutationTest:
runs-on: ubuntu-latest
env:
PHP_VERSION: ${{ matrix.php }}
strategy:
matrix:
php: [ "8.2", "8.3" ]
dependencies: [ lowest, highest ]
steps:
-
uses: actions/checkout@v3
-
name: "Composer install: ${{ matrix.dependencies }}"
run: make all/composer/install-${{ matrix.dependencies }}
-
name: Tests with mutation
run: make test
CodeQualityAnalysis:
runs-on: ubuntu-latest
env:
PHP_VERSION: ${{ matrix.php }}
strategy:
matrix:
php: [ "8.2", "8.3" ]
dependencies: [ lowest, highest ]
steps:
-
uses: "actions/checkout@v3"
-
name: "Composer install: ${{ matrix.dependencies }}"
run: make all/composer/install-${{ matrix.dependencies }}
-
name: Run code quality analysis
run: make analyze