-
Notifications
You must be signed in to change notification settings - Fork 6
90 lines (75 loc) · 2.27 KB
/
php-tests.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
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
89
90
name: PHP Tests
on: [push, pull_request]
jobs:
phpunit:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "PHP-${{ matrix.php-versions }}: PHPUnit"
strategy:
matrix:
php-versions: ['7.4']
experimental: [false]
include:
- php-versions: 8.0
experimental: true
- php-versions: 8.1
experimental: true
- php-versions: 8.2
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit:9.5.x
extensions: uopz
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Install dependencies
run: composer update
- name: Run PHPunit
run: phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml
- name: Collect code coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
phpcs:
runs-on: ubuntu-latest
continue-on-error: true
name: "PHPCS"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codestyle checkout
uses: actions/checkout@v3
with:
repository: 'lunr-php/lunr-coding-standard'
ref: 'release/0.7.x'
# Relative path under $GITHUB_WORKSPACE to place the repository
path: 'codestyle'
- name: Setup PHPCS
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: cs2pr, phpcs
- name: Run PHPCS
run: phpcs -q --report=checkstyle src --standard=$GITHUB_WORKSPACE/codestyle/Lunr | cs2pr
phpstan:
runs-on: ubuntu-latest
continue-on-error: true
name: "PHPStan"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHPStan
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: phpstan
extensions: uopz
- name: Install dependencies
run: composer update
- name: Run PHPStan
run: phpstan analyze src -l2 --configuration tests/phpstan.neon.dist