Enable PHP CS Fixer's concat_space
rule
#46
Workflow file for this run
This file contains hidden or 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: 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 |