-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (39 loc) · 1.06 KB
/
phpunit_psql_14.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
name: PHPunit Postgres 14
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' ]
name: PHPunit PHP ${{ matrix.php }}
services:
postgres:
image: postgres:14
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:
POPULATOR_ADAPTER: pgsql
POPULATOR_HOST: localhost
POPULATOR_PORT: ${{ job.services.postgres.ports[5432] }}
POPULATOR_USERNAME: postgres
POPULATOR_PASSWORD: 123