-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (65 loc) · 1.79 KB
/
ci.yml
File metadata and controls
76 lines (65 loc) · 1.79 KB
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
name: CI
on:
push:
branches:
- main
jobs:
cakephp-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.4]
services:
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: game_on_test
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping --silent"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, intl, pdo_mysql, xml
coverage: none
tools: composer
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: app/vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('app/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-
- name: Install Composer dependencies
working-directory: app
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run static analysis
working-directory: app
run: composer cs-check
- name: Run migrations
working-directory: app
env:
DB_HOST: 127.0.0.1
DB_USERNAME: root
DB_PASSWORD: root
DB_NAME: game_on_test
DB_PORT: 3306
run: bin/cake migrations migrate -c test
- name: Run unit tests
working-directory: app
env:
DB_HOST: 127.0.0.1
DB_USERNAME: root
DB_PASSWORD: root
DB_NAME: game_on_test
DB_PORT: 3306
run: composer unit-tests