-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (59 loc) · 1.81 KB
/
unit-tests.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
64
65
66
67
68
69
70
71
72
name: Test
on:
push:
pull_request:
jobs:
UnitTest:
name: Unit Tests
services:
postgres:
image: postgres
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
matrix:
os: [ubuntu-latest]
php-version: [8.0, 8.1]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: Show PHP Info
run: php -v && php -r "foreach (get_loaded_extensions() as \$each) echo \$each.':'.phpversion(\$each).PHP_EOL;"
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --ignore-platform-reqs
- name: Run Unit Tests
run: composer run-script test -- --coverage-clover coverage.xml
env:
RUN_DB_TEST: YES
PGSQL_DSN: pgsql:host=localhost;port=5432;dbname=postgres
PGSQL_USER: postgres
PGSQL_PASSWORD: postgres
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
files: ./coverage.xml