Skip to content

Bump friendsofphp/php-cs-fixer from 3.11.0 to 3.35.1 #105

Bump friendsofphp/php-cs-fixer from 3.11.0 to 3.35.1

Bump friendsofphp/php-cs-fixer from 3.11.0 to 3.35.1 #105

Workflow file for this run

name: Run Tests
on:
push:
branches: [ develop ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
php: ['8.0', '8.1']
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
dependency-version: prefer-lowest
- php: 8.1
os: macos-latest
- php: 8.1
os: windows-latest
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: Setup Problem Matches
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP dependencies
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
- name: Unit Tests
run: ./vendor/bin/phpunit --colors=always