71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['7.4', '8.0', '8.1']
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
extensions: gd, mbstring, pcov, zip
|
|
ini-values: max_execution_time=600, memory_limit=-1
|
|
tools: composer:v2
|
|
coverage: pcov
|
|
env:
|
|
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Get composer cache directory
|
|
id: composercache
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- name: Cache composer dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composercache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
|
|
- name: Setup problem matchers
|
|
run: |
|
|
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
|
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
|
|
|
- name: Install Composer dependencies
|
|
run: composer install --prefer-dist
|
|
|
|
- name: Check code quality
|
|
env:
|
|
PHP_CS_FIXER_IGNORE_ENV: 1
|
|
run: vendor/bin/code-quality
|
|
|
|
- name: Test against highest versions
|
|
run: |
|
|
vendor/bin/unit-test
|
|
vendor/bin/functional-test
|
|
|
|
- name: Test against lowest versions
|
|
run: |
|
|
composer update --prefer-lowest
|
|
vendor/bin/unit-test
|
|
vendor/bin/functional-test ^4.4
|
|
|
|
- name: Archive logs
|
|
if: ${{ failure() }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: logs
|
|
path: vendor/endroid/quality/application/var/log
|
|
|
|
- name: Archive code coverage results
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: coverage
|
|
path: tests/coverage
|