Bump micromatch from 4.0.5 to 4.0.8 in /website #926
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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- "2.x" | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP with extensions" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: "Determine composer cache directory" | |
id: "determine-composer-cache-directory" | |
run: 'echo "::set-output name=directory::$(composer config cache-dir)"' | |
- name: "Cache dependencies installed with composer" | |
uses: "actions/[email protected]" | |
with: | |
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | |
key: "php-${{ matrix.php-version }}-composer-cache" | |
- name: "Install lowest available packages for PHP 7.4, 8.0 and 8.1" | |
if: ${{ matrix.php-version == '7.4' || matrix.php-version == '8.0' || matrix.php-version == '8.1' }} | |
run: "composer up --prefer-lowest" | |
- name: "Install packages for PHP 8.4" | |
if: ${{ matrix.php-version == '8.4' }} | |
run: "composer install --ignore-platform-reqs" | |
- name: "Run tests (old PHP versions)" | |
if: ${{ matrix.php-version == '7.4' || matrix.php-version == '8.0' || matrix.php-version == '8.1' }} | |
run: "PHPUNIT_FLAGS=--no-coverage make test-phpunit test-psalm test-examples" | |
- name: "Run tests" | |
if: ${{ matrix.php-version == '8.2' || matrix.php-version == '8.3' }} | |
run: "make -j -O test" | |
- name: "Run tests (PHP 8.4)" | |
if: ${{ matrix.php-version == '8.4' }} | |
run: "make -j -O test-phpunit test-examples" | |
- name: "Send code coverage" | |
if: ${{ matrix.php-version == '8.3' }} | |
uses: codecov/[email protected] |