-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (45 loc) · 1.21 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
name: Continuous Integration
on:
push:
branches:
- master
- develop
paths-ignore:
- "docs/**"
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.3", "7.4", "8.0"]
phpunit-versions: ["latest"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=60
coverage: none
- name: Install dependencies
run: composer install --prefer-dist ${{ matrix.composer-extra-arguments }}
- name: Run unit tests
run: vendor/bin/phpunit --testsuite=unit
static-analysis:
name: Static analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
coverage: none
- name: Install dependencies
run: composer install --prefer-dist
- name: Run PHP_CodeSniffer
run: vendor/bin/phpcs