-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (36 loc) · 1.18 KB
/
php-build.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
name: build
on:
push:
branches: ['master', 'feature/*']
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1', '8.2' ]
phpunit-versions: [ 'latest' ]
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}
- name: Validate composer.json and composer.lock
run: composer validate --strict --no-interaction
- name: Install Dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Install coveralls
run: composer require --dev --no-interaction php-coveralls/php-coveralls
- name: Launch test unit in coverage mode
run: composer test-coverage
- name: Launch check style
run: composer cs-check
- name: Publish coveralls
if: matrix.php-versions == '8.1'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: vendor/bin/php-coveralls -v