DK - Christmas fix #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] | |
setup: ['lowest', 'stable', 'next', 'no-calendar'] | |
name: PHP ${{ matrix.php }} - ${{ matrix.setup }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: ${{ matrix.setup == 'no-calendar' && '' || 'calendar' }} | |
tools: composer:v2 | |
- name: Disable calendar | |
if: matrix.setup == 'no-calendar' | |
run: | | |
sudo phpdismod calendar | |
composer require --no-update roukmoute/polyfill-calendar --no-interaction | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-${{ matrix.setup }}-v4-php-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.setup }}-v4-php-${{ matrix.php }}- | |
- name: Install dependencies | |
if: steps.composer-cache.outputs.cache-hit != 'true' | |
run: | | |
${{ matrix.php >= 8.1 && 'composer require --no-update phpunit/phpunit:^8.5.14 --no-interaction' || '' }} | |
composer update --prefer-dist ${{ matrix.setup != 'next' && matrix.setup != 'no-calendar' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress --no-suggest ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }} | |
- name: Code Climate Test Reporter Preparation | |
if: matrix.php == '7.4' && matrix.setup == 'stable' | |
run: | | |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter; | |
chmod +x ./cc-test-reporter; | |
./cc-test-reporter before-build; | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
- name: Fix PHP compatibility | |
if: matrix.php >= '8.1' | |
run: php tests/fix-php-compatibility.php | |
- name: Run test suite | |
run: | | |
if [[ ${MATRIX_CONFIG} == "7.4-stable" ]]; then | |
vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml; | |
else | |
vendor/bin/phpunit --no-coverage; | |
fi; | |
env: | |
MATRIX_CONFIG: ${{ matrix.php }}-${{ matrix.setup }} | |
- name: Code Climate Test Reporter | |
if: ${{ matrix.php == '7.4' && matrix.setup == 'stable' && env.CC_TEST_REPORTER_ID != '' }} | |
run: ./cc-test-reporter after-build --exit-code 0 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
- name: Coverage | |
if: matrix.php == '7.4' && matrix.setup == 'stable' | |
run: bash <(curl -s https://codecov.io/bash) | |
multitest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['7.4'] | |
setup: ['stable'] | |
name: Multitest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: calendar | |
tools: composer:v2 | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-multi-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php-multi-${{ matrix.php }}- | |
- name: Install dependencies | |
if: steps.composer-cache.outputs.cache-hit != 'true' | |
run: | | |
composer require kylekatarnls/multi-tester:^1.1 --no-update; | |
composer update --prefer-dist --prefer-${{ matrix.setup }} --no-progress --no-suggest ${{ matrix.composerOptions }}; | |
- name: Run test suites | |
run: vendor/bin/multi-tester --verbose |