mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
# from doctrine/instantiator:
|
|
# https://github.com/doctrine/instantiator/blob/97aa11bb71ad6259a8c5a1161b4de2d6cdcc5501/.github/workflows/continuous-integration.yml
|
|
|
|
name: "CI"
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "*.x"
|
|
- master
|
|
push:
|
|
branches:
|
|
- "*.x"
|
|
- master
|
|
|
|
env:
|
|
fail-fast: true
|
|
COMPOSER_ROOT_VERSION: "1.4"
|
|
|
|
jobs:
|
|
phpunit:
|
|
name: "PHPUnit"
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- php-version: 7.1
|
|
composer-flags: "--prefer-lowest"
|
|
- php-version: 7.2
|
|
symfony-require: "^4.0"
|
|
- php-version: 7.3
|
|
symfony-require: "^5.0"
|
|
- php-version: 7.4
|
|
symfony-require: "^4.0"
|
|
- php-version: 7.3
|
|
symfony-require: "^5.0"
|
|
- php-version: 8.0
|
|
composer-flags: "--ignore-platform-reqs"
|
|
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@v2"
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: "Install PHP without coverage"
|
|
uses: "shivammathur/setup-php@v2"
|
|
with:
|
|
php-version: "${{ matrix.php-version }}"
|
|
coverage: "none"
|
|
|
|
- name: "Cache dependencies installed with composer"
|
|
uses: "actions/cache@v2"
|
|
with:
|
|
path: "~/.composer/cache"
|
|
key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}"
|
|
restore-keys: "php-${{ matrix.php-version }}-composer-locked-"
|
|
|
|
- name: "Install dependencies with composer"
|
|
env:
|
|
SYMFONY_REQUIRE: "${{ matrix.symfony-require }}"
|
|
run: |
|
|
composer global require --no-progress --no-scripts --no-plugins symfony/flex
|
|
composer update --no-interaction --no-progress ${{ matrix.composer-flags }}
|
|
|
|
- name: "Run PHPUnit"
|
|
run: "./phpunit"
|