Skip to content

Tests

Tests #168

Workflow file for this run

name: Tests
on:
push:
pull_request:
schedule:
- cron: '30 7 * * 1'
jobs:
tests:
if: (github.event_name == 'schedule' && github.repository == 'e-commit/messenger-supervisor-bundle') || (github.event_name != 'schedule')
strategy:
fail-fast: false
matrix:
include:
#Mini (for each Symfony version)
- php-version: '8.1'
symfony-version: '5.4.*'
composer-flags: '--prefer-stable --prefer-lowest'
description: 'with SF 5.4.* lowest'
- php-version: '8.1'
symfony-version: '6.0.*'
composer-flags: '--prefer-stable --prefer-lowest'
description: 'with SF 6.0.* lowest'
- php-version: '8.1'
symfony-version: '6.1.*'
composer-flags: '--prefer-stable --prefer-lowest'
description: 'with SF 6.1.* lowest'
- php-version: '8.1'
symfony-version: '6.2.*'
composer-flags: '--prefer-stable --prefer-lowest'
description: 'with SF 6.2.* lowest'
- php-version: '8.1'
symfony-version: '6.3.*'
composer-flags: '--prefer-stable --prefer-lowest'
description: 'with SF 6.3.* lowest'
#Symfony versions
- php-version: '8.2'
symfony-version: '5.4.*'
description: 'with SF 5.4.*'
- php-version: '8.2'
symfony-version: '6.0.*'
description: 'with SF 6.0.*'
- php-version: '8.2'
symfony-version: '6.1.*'
description: 'with SF 6.1.*'
- php-version: '8.2'
symfony-version: '6.2.*'
description: 'with SF 6.2.*'
- php-version: '8.2'
symfony-version: '6.3.*'
description: 'with SF 6.3.*'
#PHP versions
- php-version: '8.1'
- php-version: '8.2'
#CS
- php-version: '8.1'
description: 'with Coding Standards'
coding-standards: true
#Static Analysis (min PHP version)
- php-version: '8.1'
description: 'with Static Analysis'
static-analysis: true
name: PHP ${{ matrix.php-version }} ${{ matrix.description }}
runs-on: 'ubuntu-latest'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install system dependencies
if: matrix.coding-standards != true && matrix.static-analysis != true
run: |
sudo apt-get update
sudo apt-get install -y supervisor
sudo cp tests/Functional/App/config/messenger-supervisor-bundle.conf /etc/supervisor/conf.d/messenger-supervisor-bundle.conf
sudo sed -i 's|<phpPath>|'"`which php`"'|g' /etc/supervisor/conf.d/messenger-supervisor-bundle.conf
sudo sed -i 's|<AppPath>|'"`pwd`"'|g' /etc/supervisor/conf.d/messenger-supervisor-bundle.conf
sudo sed -i 's|<user>|'"`whoami`"'|g' /etc/supervisor/conf.d/messenger-supervisor-bundle.conf
sudo service supervisor restart && sleep 2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: "pdo_sqlite"
coverage: none
tools: flex
env:
update: true
- name: Display versions
run: |
php -r 'foreach (get_loaded_extensions() as $extension) echo $extension . " " . phpversion($extension) . PHP_EOL;'
php -i
- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}-${{ matrix.composer-flags }}
restore-keys: composer-${{ runner.os }}-${{ matrix.php-version }}-
- name: Configure Symfony Flex
if: matrix.symfony-version
run: composer config extra.symfony.require ${{ matrix.symfony-version }}
- name: Install dependencies
run: composer update --no-interaction --no-progress ${{ matrix.composer-flags }}
- name: Run PHPUnit
if: matrix.coding-standards != true && matrix.static-analysis != true
run: php vendor/phpunit/phpunit/phpunit
- name: Display Supervisor status
if: matrix.coding-standards != true && matrix.static-analysis != true
run: |
echo "Supervisor status :"
sudo supervisorctl status || true
echo "Supervisor worker stdout :"
sudo supervisorctl tail program_async:program_async_00 stdout || true
echo "Supervisor worker stderr :"
sudo supervisorctl tail program_async:program_async_00 stderr || true
- name: Run PHP CS Fixer
if: matrix.coding-standards
run: php vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --diff --dry-run -v
- name: Analyze composer dependencies
if: matrix.coding-standards
run: |
curl -LSs https://github.com/maglnet/ComposerRequireChecker/releases/latest/download/composer-require-checker.phar > composer-require-checker.phar
php composer-require-checker.phar check composer.json
- name: Check license year
if: matrix.coding-standards
run: cat LICENSE |grep -E "\(c\) ([0-9]+\-)*`date +%G`"
- name: Run Psalm
if: matrix.static-analysis
run: php vendor/bin/psalm --stats --output-format=github