-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (45 loc) · 1.44 KB
/
github-actions.yml
File metadata and controls
55 lines (45 loc) · 1.44 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
name: Tests
on: [push, pull_request]
jobs:
tests:
name: Tests PHP ${{ matrix.php }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2]
experimental: [false]
include:
- coverage: --no-coverage
- php: 7.2
analysis: true
coverage: --coverage-clover clover.xml
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- name: Install dependencies with Composer
uses: ramsey/composer-install@v1
- name: Coding standards
if: matrix.analysis
run: bin/php-cs-fixer fix --ansi --dry-run --using-cache=no -v --diff
- name: Static analysis
if: matrix.analysis
run: bin/phpstan --memory-limit=1G analyse
- name: Unit tests
run: bin/phpunit ${{ matrix.coverage }}
- name: Refactoring
if: matrix.analysis
run: bin/rector --dry-run
- name: Upload coverage results to Coveralls
if: matrix.analysis
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
composer require php-coveralls/php-coveralls -n -W
bin/php-coveralls --coverage_clover=clover.xml -v