-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (47 loc) · 1.46 KB
/
master.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
name: main
env:
DB_DATABASE: awesome
DB_USER: root
DB_PASSWORD: 'root'
APPLICATION_ENV: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2', '8.3']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up MySQL
run: sudo service mysql start
- name: Create DB
run: mysql -e 'CREATE DATABASE ${{ env.DB_DATABASE }};' -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite with coverage
run: XDEBUG_MODE=coverage vendor/bin/codecept run unit --coverage-xml --env=ci
- name: Download Scrutinizer ocular.phar
run: composer require scrutinizer/ocular
- name: Upload coverage
run: vendor/bin/ocular code-coverage:upload --format=php-clover tests/_output/coverage.xml