2020-12-10 21:59:36 +01:00
|
|
|
# from doctrine/instantiator:
|
|
|
|
# https://github.com/doctrine/instantiator/blob/97aa11bb71ad6259a8c5a1161b4de2d6cdcc5501/.github/workflows/continuous-integration.yml
|
|
|
|
|
|
|
|
name: "CI"
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- "*.x"
|
2020-12-10 22:32:53 +01:00
|
|
|
- master
|
2020-12-10 21:59:36 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "*.x"
|
2020-12-10 22:32:53 +01:00
|
|
|
- master
|
2020-12-10 21:59:36 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
fail-fast: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
phpunit:
|
|
|
|
name: "PHPUnit"
|
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- php-version: 7.1
|
|
|
|
composer-flags: "--prefer-lowest"
|
|
|
|
- php-version: 7.2
|
2020-12-10 22:40:50 +01:00
|
|
|
symfony-require: "^4.0"
|
2020-12-10 21:59:36 +01:00
|
|
|
- php-version: 7.3
|
2020-12-10 22:40:50 +01:00
|
|
|
symfony-require: "^5.0"
|
|
|
|
- php-version: 7.4
|
|
|
|
symfony-require: "^4.0"
|
2020-12-10 21:59:36 +01:00
|
|
|
- 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 }}"
|
2021-06-07 18:52:44 +02:00
|
|
|
tools: composer
|
2020-12-10 21:59:36 +01:00
|
|
|
coverage: "none"
|
|
|
|
|
2021-06-07 18:52:44 +02:00
|
|
|
- name: Get composer cache directory
|
|
|
|
id: composercache
|
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
|
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v2
|
2020-12-10 21:59:36 +01:00
|
|
|
with:
|
2021-06-07 18:52:44 +02:00
|
|
|
path: ${{ steps.composercache.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2020-12-10 21:59:36 +01:00
|
|
|
|
|
|
|
- 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"
|