-
Notifications
You must be signed in to change notification settings - Fork 20
57 lines (49 loc) · 1.47 KB
/
phpunit_mysql57_psql10.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
name: PHPunit Mysql 5.7, Postgres 10
on:
push:
branches:
- master
pull_request: null
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
name: PHPunit - PHP ${{ matrix.php }}
services:
mysql:
image: bitnami/mysql:5.7
env:
MYSQL_DATABASE: phoenix
MYSQL_ROOT_PASSWORD: 123
MYSQL_CHARACTER_SET: utf8mb4
MYSQL_COLLATE: utf8mb4_general_ci
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
postgres:
image: postgres:10
env:
POSTGRES_PASSWORD: 123
options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=5
ports:
- 5432
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Composer update
run: composer update --no-progress --no-interaction
- name: PHPunit
run: vendor/bin/phpunit --coverage-text
env:
PHOENIX_MYSQL_HOST: 127.0.0.1
PHOENIX_MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
PHOENIX_MYSQL_PASSWORD: 123
PHOENIX_PGSQL_PORT: ${{ job.services.postgres.ports[5432] }}
PHOENIX_PGSQL_PASSWORD: 123