-
-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (40 loc) · 1.29 KB
/
tests.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
name: "Tests 🧪"
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: 'ubuntu-latest'
env:
fail-fast: true
services:
postgres:
image: postgres:16
env:
POSTGRES_PASSWORD: main
POSTGRES_USER: main
POSTGRES_DB: main_test
ports:
- 5432:5432
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Install PHP with extensions"
uses: shivammathur/setup-php@v2
with:
coverage: "none"
extensions: intl, ctype, iconv, gd
php-version: 8.3
tools: composer
- name: "Composer install"
uses: ramsey/composer-install@v3
- name: "Init database"
run: ./bin/console doctrine:database:create --env=test --if-not-exists
- name: "Execute migrations"
run: ./bin/console doctrine:migration:migrate -n --env=test
- name: "Load fixtures"
run: ./bin/console doctrine:fixtures:load -n --env=test
- name: "Run tests"
run: vendor/bin/phpunit