You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
phpcs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup PHP environment
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.1
|
|
- name: Install dependencies
|
|
run: composer install
|
|
- name: pint check
|
|
run: composer check-style
|
|
phpunit:
|
|
strategy:
|
|
matrix:
|
|
php_version: [8.0, 8.1, 8.2]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup PHP environment
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php_version }}
|
|
coverage: xdebug
|
|
- name: Install dependencies
|
|
run: composer install
|
|
- name: PHPUnit check
|
|
run: ./vendor/bin/phpunit --coverage-text
|