-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (43 loc) · 1.61 KB
/
test.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
name: Test
on:
push:
pull_request:
types: [opened, synchronize, edited, reopened]
jobs:
test:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-version:
- '8.0'
- '8.1'
experimental: [false]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: xdebug
ini-values: "memory_limit=-1"
php-version: ${{ matrix.php-version }}
tools: composer:v2, cs2pr
- name: Validate composer.json
run: composer validate --no-check-lock
- name: Configure for PHP 8.1
if: matrix.php-version == '8.1'
run: composer config platform.php 8.0.99
- name: Install dependencies
run: composer install --prefer-dist --no-progress --ansi
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Lint PHP files
run: find src tests -name "*.php" -print0 | xargs -0 -n1 -P8 php -l
- name: Validate code style
run: vendor/bin/phpcs -q --report=checkstyle | cs2pr
- name: PHPStan
run: vendor/bin/phpstan analyse
- name: Run PHPUnit tests
run: vendor/bin/phpunit --coverage-text