Bump symfony/process from 5.4.19 to 5.4.46 in /tools/php-cs-fixer #57
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: Tests | |
on: [ push ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: "Static analysis" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
id: cache-db | |
with: | |
path: ~/.symfony/cache | |
key: db | |
- uses: symfonycorp/security-checker-action@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Install dependencies | |
run: composer install --no-interaction | |
- name: Lint code | |
run: composer run lint | |
- name: PHPStan | |
run: composer run phpstan | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
php: | |
- version: 7.2 | |
- version: 7.3 | |
- version: 7.4 | |
- version: 8.0 | |
- version: 8.1 | |
- version: 8.2 | |
stability: [ prefer-stable ] | |
name: P${{ matrix.php.version }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php.version }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: pcov | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Install dependencies (and remove local phpunit) | |
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
- name: Remove PHPUnit from library composer.json | |
run: composer remove --dev phpunit/phpunit | |
- name: Install PHPUnit globally | |
run: composer global require phpunit/phpunit '^8.5.33' | |
- name: Execute tests | |
run: phpunit --version && phpunit |