-
-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (46 loc) · 1.5 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
name: Build
on:
push:
branches: [master, develop, develop-5.0]
pull_request:
branches: [master, develop, develop-5.0]
workflow_dispatch:
jobs:
PHPUnit:
strategy:
fail-fast: false
matrix:
php_versions: ['8.0', '8.1', '8.2']
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: PHPUnit Tests - ${{ matrix.php_versions }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
extensions: mbstring, dom, fileinfo, gd
coverage: xdebug
tools: pecl
- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Setup Redis-server
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: supercharge/[email protected]
with:
redis-version: 6
- name: Setup Memcached
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: niden/actions-memcached@v7
- name: Configure matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
fail_ci_if_error: true