-
-
Notifications
You must be signed in to change notification settings - Fork 4
73 lines (60 loc) · 2.14 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
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
name: "Tests 🧪"
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: 'ubuntu-latest'
env:
fail-fast: true
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: main
POSTGRES_USER: main
POSTGRES_DB: main_test
ports:
- 5432:5432
steps:
- name: "Checkout code"
uses: actions/checkout@v3
- name: "Install PHP with extensions"
uses: shivammathur/setup-php@v2
with:
coverage: "none"
extensions: intl, ctype, iconv, gd
php-version: 8.2
tools: composer
- uses: actions/setup-node@v3
with:
node-version: latest
cache: 'npm'
- name: "Add PHPUnit matcher"
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: "Set composer cache directory"
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Cache composer"
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-${{ hashFiles('composer.json') }}
restore-keys: composer-
- name: "Composer install"
id: install
run: composer install --no-interaction --no-progress
- name: "Compile CSS and Javascript"
run: |
yarn install
yarn dev
- 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