-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (65 loc) · 2.41 KB
/
app.yaml
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
73
74
75
76
77
78
79
80
81
name: App
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
app:
runs-on: ubuntu-latest
env:
APP_ENV: test
DATABASE_URL: "postgresql://postgres:[email protected]:5432/panda?serverVersion=13&charset=utf8"
steps:
-
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
-
uses: actions/checkout@v3
-
name: Copy .env.test.local
run: php -r "file_exists('.env.test.local') || copy('.env.test', '.env.test.local');"
-
name: Setup PostgreSQL
uses: harmon758/postgresql-action@v1
with:
postgresql version: "13"
postgresql password: "postgres"
-
name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
-
name: Install dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
-
name: Create database
run: |
bin/console doctrine:database:create --if-not-exists
bin/console doctrine:migrations:migrate --no-interaction
-
name: Execute database schema validation
run: bin/console doctrine:schema:validate --skip-sync --no-interaction
-
name: Execute static analysis
run: |
composer run-script static-analyze:code-style
composer run-script static-analyze:phpstan
composer run-script static-analyze:psalm
-
name: Execute unit tests
run: composer run-script test:unit
-
name: Execute contract tests
run: composer run-script test:contract
-
name: Execute behavioral tests
run: composer run-script test:behavioral