-
Notifications
You must be signed in to change notification settings - Fork 15
88 lines (70 loc) · 2.11 KB
/
continuous-integration.yml
File metadata and controls
88 lines (70 loc) · 2.11 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
name: CI Pipeline
on:
workflow_dispatch:
push:
branches:
- "[0-9]+.[0-9]+.x"
pull_request:
jobs:
coding-standard:
name: "Coding Standard"
runs-on: "${{ matrix.operating-system }}"
strategy:
fail-fast: true
matrix:
operating-system: ['ubuntu-latest']
php-version: ['8.1']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: "composer:v2"
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Check codestyle
run: vendor/bin/phpcs -s
static-analysis:
name: "Static Analysis"
runs-on: "${{ matrix.operating-system }}"
strategy:
fail-fast: true
matrix:
php-version: ['8.1']
operating-system: ['ubuntu-latest']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: "composer:v2"
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Analyze code with static-analysis
run: vendor/bin/phpstan analyse --no-progress
unit-tests:
name: "Unit Tests"
runs-on: "${{ matrix.operating-system }}"
continue-on-error: "${{ matrix.experimental }}"
strategy:
fail-fast: false
matrix:
php-version: ["8.1","8.2"]
operating-system: ["ubuntu-latest"]
experimental: [false]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: "composer:v2"
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader --ignore-platform-req=php
- name: Execute tests
run: vendor/bin/phpunit --colors=always --coverage-text