-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (33 loc) · 889 Bytes
/
Copy pathphp_ci.yml
File metadata and controls
41 lines (33 loc) · 889 Bytes
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
name: PHP CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [7.4, 8.0, 8.1, 8.2]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
coverage: xdebug # Enable Xdebug extension, required by the project and used for coverage
- name: Install dependencies
run: composer install
- name: Run tests and analysis
run: |
vendor/bin/phpunit --coverage-clover build/logs/clover.xml
vendor/bin/psalm
vendor/bin/phpstan analyze
- name: Codecov
uses: codecov/codecov-action@v1.5.2
with:
files: build/logs/clover.xml