-
-
Notifications
You must be signed in to change notification settings - Fork 80
66 lines (51 loc) · 1.65 KB
/
build.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: build
on: [ push, pull_request ]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '8.1', '8.2' ]
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
services:
mysql:
image: mysql:8.0.23
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test
MYSQL_ALLOW_EMPTY_PASSWORD: true
ports:
- 33306:3306
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, pdo, pdo_mysql, intl, zip
coverage: none
- name: Check PHP version
run: php -v
- name: Check Composer version
run: composer -V
- name: Check PHP extensions
run: php -m
- name: Check MySQL version
run: mysql -V
- name: Start MySQL
run: sudo systemctl start mysql
- name: Check MySQL variables
run: mysql -uroot -proot -e "SHOW VARIABLES LIKE 'version%';"
- name: Create database
run: mysql -uroot -proot -e 'CREATE DATABASE IF NOT EXISTS slim_skeleton_test CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: composer test:all
env:
APP_ENV: github
PHP_CS_FIXER_IGNORE_ENV: 1