-
Notifications
You must be signed in to change notification settings - Fork 8
63 lines (59 loc) · 1.67 KB
/
ci.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
name: CI
on:
push:
pull_request:
defaults:
run:
shell: bash
jobs:
tests:
name: Tests
runs-on: ubuntu-20.04
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
fail-fast: false
env:
MATRIX_PHP: ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup PHP
uses: shivammathur/setup-php@v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
coverage: "xdebug"
php-version: "${{ matrix.php }}"
extensions: gd, zip
tools: composer
ini-values: error_reporting=-1, display_errors=On
- name: Install dependencies
run: |
composer install --no-interaction --no-scripts --no-progress --prefer-dist
- uses: browser-actions/setup-chrome@latest
- run: chrome --version
- name: Add browser drivers
uses: nanasess/setup-chromedriver@v2
- name: Setup Mink test server
run: |
mkdir ./logs
./vendor/bin/mink-test-server &> ./logs/mink-test-server.log &
- name: Remove preinstalled chromedriver bin from ubuntu
run: sudo rm -rf /usr/local/share/chrome_driver
- name: Run tests
run: |
vendor/bin/phpunit -v --coverage-clover=coverage.xml
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
files: coverage.xml
- name: Archive logs artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: logs_php-${{ matrix.php }}
path: |
logs