-
-
Notifications
You must be signed in to change notification settings - Fork 77
89 lines (69 loc) · 2.21 KB
/
Copy pathbuild.yml
File metadata and controls
89 lines (69 loc) · 2.21 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
77
78
79
80
81
82
83
84
85
86
87
88
89
name: build
on:
push:
pull_request:
paths-ignore:
- 'docs/**'
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '8.2', '8.3', '8.4', '8.5' ]
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
env:
APP_ENV: github
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@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, pdo, pdo_mysql, intl, zip
- 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 update --prefer-dist --no-progress --no-suggest
- name: Run PHP Coding Standards Fixer
run: composer cs:check
- name: Run PHP CodeSniffer
run: composer sniffer:check
- name: Run PHPStan
run: composer stan
- name: Run tests
if: ${{ matrix.php-versions != '8.4' }}
run: composer test
- name: Run tests with coverage
if: ${{ matrix.php-versions == '8.4' }}
run: composer test:coverage
- name: Upload coverage
if: ${{ matrix.php-versions == '8.4' }}
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: build/coverage/clover.xml