Bump symfony/process from 6.4.3 to 6.4.14 #43
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: CI | |
on: [push, pull_request] | |
jobs: | |
testsuite: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['8.1', '8.2', '8.3'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: pcov | |
- name: Composer install | |
run: composer install | |
- run: pip3 install cchardet xld_logchecker eac_logchecker | |
- run: composer run lint | |
- run: composer run static-analysis | |
- run: composer run test | |
- run: bin/logchecker --version |