mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-29 08:26:06 +03:00
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
|
name: PHP Composer
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ 'master', '2.x' ]
|
||
|
pull_request:
|
||
|
branches: [ 'master', '2.x' ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
operating-system: [ 'ubuntu-latest' ]
|
||
|
php-versions: [ '7.1', '7.2', '7.3', '7.4' ]
|
||
|
|
||
|
runs-on: ${{ matrix.operating-system }}
|
||
|
|
||
|
steps:
|
||
|
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Validate composer.json and composer.lock
|
||
|
run: composer validate
|
||
|
|
||
|
- name: Setup PHP
|
||
|
uses: shivammathur/setup-php@v2
|
||
|
with:
|
||
|
php-version: ${{ matrix.php-versions }}
|
||
|
tools: phpunit, phpstan
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: composer install --prefer-dist --no-progress --no-suggest
|
||
|
|
||
|
- name: PHP Unit Tests
|
||
|
run: composer test
|
||
|
|
||
|
- name: PHP Stan
|
||
|
if: matrix.php-versions == '7.1'
|
||
|
run: |
|
||
|
phpstan --version
|
||
|
phpstan analyse
|
||
|
|
||
|
- name: Scrunitizer CI
|
||
|
if: matrix.php-versions == '7.1'
|
||
|
run: |
|
||
|
wget https://scrutinizer-ci.com/ocular.phar
|
||
|
php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml
|