Skip to content

Enable PHP CS Fixer's concat_space rule #46

Enable PHP CS Fixer's concat_space rule

Enable PHP CS Fixer's concat_space rule #46

Workflow file for this run

name: Check Build
on: [pull_request]
jobs:
build:
strategy:
matrix:
php: ["8.1", "8.2"]
composer_flags:
- '--prefer-lowest'
- ''
runs-on: ubuntu-latest
container:
image: eventjet/checks-${{ matrix.php }}:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare environment
run: |
echo "COMPOSER_CACHE=$(composer config cache-dir)" >> $GITHUB_ENV
- name: Composer Cache
uses: actions/cache@v3
with:
path: |
${{ env.COMPOSER_CACHE }}
vendor
key: ${{ runner.os }}-composer
- name: Install dependencies
run: |
composer update --no-progress --no-interaction ${{ matrix.composer_flags }} > /dev/null
- name: Tests
run: |
vendor/bin/phpunit