Skip to content

Bump symfony/process from 5.4.24 to 5.4.46 #10

Bump symfony/process from 5.4.24 to 5.4.46

Bump symfony/process from 5.4.24 to 5.4.46 #10

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php-versions }}-
- name: Install dependencies
run: composer install -o --no-progress
- name: Run PHPUnit tests
run: ./vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml
- name: Run Behat tests
run: ./vendor/bin/behat
- name: Scrutinizer
run: ./vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml