-
Notifications
You must be signed in to change notification settings - Fork 41
42 lines (35 loc) · 1000 Bytes
/
test.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
name: Test
on: [push, pull_request]
jobs:
phpunit10:
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: ['8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v5
with:
php_version: ${{ matrix.php-version }}
args: --ignore-platform-reqs
- uses: php-actions/phpunit@v3
with:
configuration: phpunit.xml
php_version: ${{ matrix.php-version }}
php_extensions: bcmath gmp xdebug
testsuite: Unit
version: 10
env:
XDEBUG_MODE: coverage
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v5
with:
php_version: 8.1
php_extensions: bcmath gmp xdebug
- name: Install PHP_CodeSniffer
run: |
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
php phpcs.phar src --standard=ruleset.xml