-
Notifications
You must be signed in to change notification settings - Fork 11
36 lines (36 loc) · 998 Bytes
/
phpunit.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
name: Unit Testing
on:
push:
pull_request:
jobs:
phpcs:
runs-on: ubuntu-latest
services:
mysql:
image: mariadb:10.4
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: composer
extensions: mysql
- name: Install Composer dependencies for PHP
uses: "ramsey/composer-install@v2"
- name: Setup Test Environment
run: composer setup-local-tests
- name: Unit Testing
run: composer phpunit
env:
PHP_VERSION: ${{ matrix.php-versions }}