Bump symfony/process from 5.4.19 to 5.4.46 #70
Workflow file for this run
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: Main workflow | |
on: [push] | |
jobs: | |
run: | |
runs-on: 'ubuntu-latest' | |
strategy: | |
matrix: | |
php-versions: ['7.4'] | |
name: PHP ${{ matrix.php-versions }} Test on 'ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Set Composer | |
uses: MilesChou/composer-action/7.4@master | |
with: | |
args: install --optimize-autoloader --prefer-dist | |
- name: Run install command | |
run: ./lint-tool install | |
- name: Run lint command | |
run: ./lint-tool lint ./src |