chore(deps-dev): Bump symfony/process from 5.3.7 to 5.4.46 #33
This file contains 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: backend | |
on: | |
push: | |
branches: | |
- "*" | |
- "*/*" | |
pull_request: | |
branches: | |
- "*" | |
- "*/*" | |
jobs: | |
job_linting: | |
name: Linting (PHP ${{ matrix.php-versions }}) | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
php-versions: ["7.4"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: GitHub Action for PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: pecl | |
extensions: ast, mbstring, curl, json, intl, gd, xml, zip, bz2, opcache, sockets | |
- name: Show environment information | |
run: | | |
php -v | |
php -m | |
- name: Get cache directory - Composer | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache dependencies - Composer | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ matrix.os }}-${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ matrix.os }}-${{ matrix.php-versions }}-composer- | |
- name: Install dependencies | |
run: | | |
composer config platform.php $(php -r 'preg_match("#^\d+\.\d+\.\d+#", PHP_VERSION, $v); echo $v[0];') | |
composer update --prefer-dist --no-progress --no-suggest | |
- run: composer run-script lint |