-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (36 loc) · 1.1 KB
/
test_postgres.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
name: Test on PostgreSQL
on: [ push ]
env:
APP_DB_TYPE: pgsql
jobs:
build:
strategy:
fail-fast: false
matrix:
operating_system: ['ubuntu-22.04']
php_versions:
- '8.2'
- '8.3'
runs-on: '${{ matrix.operating_system }}'
steps:
- uses: actions/checkout@v3
- uses: ikalnytskyi/action-setup-postgres@v5
with:
username: postgres
password: 12345
database: test
port: 5432
# postgres-version: ${{ matrix.postgres_versions }}
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
- name: Install dependencies
run: COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist --no-interaction
- name: Run acceptance test cases
run: sh ./test_sh
- name: Run integration test cases
run: php _vendor/bin/codecept run integration
- name: Output logs
if: failure()
run: cat _cache/test/*.log && cat _tests/_output/email/*.txt && /home/runner/work/s2/s2/_tests/_output/