Run tests with specific Symfony versions #42
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: 'CI' | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
env: | |
CONSISTENCE_PHP_VERSION: '7.3' | |
jobs: | |
composer-validate: | |
name: 'Composer validate' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- | |
name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- | |
name: 'Setup PHP ${{ env.CONSISTENCE_PHP_VERSION }}' | |
uses: 'shivammathur/[email protected]' | |
with: | |
php-version: '${{ env.CONSISTENCE_PHP_VERSION }}' | |
coverage: 'none' | |
- | |
name: 'Setup problem matchers for PHP' | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- | |
name: 'Composer install' | |
uses: 'ramsey/[email protected]' | |
with: | |
dependency-versions: 'highest' | |
- | |
name: 'Composer validate' | |
run: 'bin/phing composer-validate' | |
lint: | |
name: 'Lint - PHP ${{ matrix.php-version }}' | |
needs: 'composer-validate' | |
runs-on: 'ubuntu-latest' | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '7.2' | |
- '7.3' | |
- '7.4' | |
steps: | |
- | |
name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- | |
name: 'Setup PHP ${{ matrix.php-version }}' | |
uses: 'shivammathur/[email protected]' | |
with: | |
php-version: '${{ matrix.php-version }}' | |
coverage: 'none' | |
- | |
name: 'Setup problem matchers for PHP' | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- | |
name: 'Composer install' | |
uses: 'ramsey/[email protected]' | |
with: | |
dependency-versions: 'highest' | |
- | |
name: 'Lint' | |
run: 'bin/phing phplint' | |
coding-standard: | |
name: 'Coding standard' | |
needs: 'lint' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- | |
name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- | |
name: 'Setup PHP ${{ env.CONSISTENCE_PHP_VERSION }}' | |
uses: 'shivammathur/[email protected]' | |
with: | |
php-version: '${{ env.CONSISTENCE_PHP_VERSION }}' | |
coverage: 'none' | |
tools: 'cs2pr' | |
- | |
name: 'Setup problem matchers for PHP' | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- | |
name: 'Composer install' | |
uses: 'ramsey/[email protected]' | |
with: | |
dependency-versions: 'highest' | |
- | |
name: 'Check coding standard' | |
run: 'bin/phing create-dirs cs || cat build/log/phpcs-checkstyle.xml | cs2pr' | |
composer-dependencies: | |
name: 'Composer dependencies' | |
needs: 'lint' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- | |
name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- | |
name: 'Setup PHP ${{ env.CONSISTENCE_PHP_VERSION }}' | |
uses: 'shivammathur/[email protected]' | |
with: | |
php-version: '${{ env.CONSISTENCE_PHP_VERSION }}' | |
coverage: 'none' | |
- | |
name: 'Setup problem matchers for PHP' | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- | |
name: 'Composer install' | |
uses: 'ramsey/[email protected]' | |
with: | |
dependency-versions: 'highest' | |
- | |
name: 'Analyze Composer dependencies' | |
run: 'bin/phing composer-dependencies' | |
tests: | |
name: 'Tests - PHP ${{ matrix.php-version }}, Symfony: ${{ matrix.symfony-version}}, Composer ${{ matrix.composer-dependencies }} dependencies' | |
needs: 'lint' | |
runs-on: 'ubuntu-latest' | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '7.2' | |
- '7.3' | |
- '7.4' | |
symfony-version: | |
# - '4.0' matthiasnoback/symfony-dependency-injection-test 4.3.0 requires symfony/config ^4.4 || ^5.3 || ^6.0 | |
# - '4.1' matthiasnoback/symfony-dependency-injection-test 4.3.0 requires symfony/config ^4.4 || ^5.3 || ^6.0 | |
# - '4.2' matthiasnoback/symfony-dependency-injection-test 4.3.0 requires symfony/config ^4.4 || ^5.3 || ^6.0 | |
# - '4.3' matthiasnoback/symfony-dependency-injection-test 4.3.0 requires symfony/config ^4.4 || ^5.3 || ^6.0 | |
- '4.4' | |
composer-dependencies: | |
- 'highest' | |
- 'lowest' | |
steps: | |
- | |
name: 'Checkout' | |
uses: 'actions/[email protected]' | |
- | |
name: 'Setup PHP ${{ matrix.php-version }}' | |
uses: 'shivammathur/[email protected]' | |
with: | |
php-version: '${{ matrix.php-version }}' | |
coverage: 'xdebug' | |
- | |
name: 'Setup problem matchers for PHP' | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"' | |
- | |
name: 'Setup problem matchers for PHPUnit' | |
run: 'echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"' | |
- | |
name: 'Composer install' | |
uses: 'ramsey/[email protected]' | |
with: | |
dependency-versions: '${{ matrix.composer-dependencies }}' | |
- | |
name: 'Install specific versions' | |
env: | |
COMPOSER_PREFER_LOWEST: ${{ matrix.composer-dependencies == 'lowest' && 1 || 0 }} | |
run: | | |
composer update \ | |
--ansi \ | |
--with 'symfony/config=${{ matrix.symfony-version }}.*' \ | |
--with 'symfony/dependency-injection=${{ matrix.symfony-version }}.*' \ | |
--with 'symfony/http-kernel=${{ matrix.symfony-version }}.*' \ | |
--with 'symfony/yaml=${{ matrix.symfony-version }}.*' | |
- | |
name: 'Run tests' | |
run: 'bin/phing tests' | |
- | |
name: 'Upload code coverage to Coveralls' | |
env: | |
COVERALLS_REPO_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
COVERALLS_PARALLEL: true | |
COVERALLS_FLAG_NAME: 'php-${{ matrix.php-version }}+symfony-${{ matrix.symfony-version }}+${{ matrix.composer-dependencies }}-dependencies' | |
run: | | |
wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar | |
php php-coveralls.phar --verbose --config build/coveralls.yml | |
finish_coveralls: | |
name: 'Finish Coveralls upload' | |
needs: 'tests' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- | |
name: 'Finish Coveralls upload' | |
uses: 'coverallsapp/[email protected]' | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
parallel-finished: true |