github-actions(deps): bump shivammathur/setup-php from 2.25.2 to 2.27.0 #161
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: CI Pipeline | |
on: | |
push: | |
branches: | |
- "[0-9]+.[0-9]+.x" | |
pull_request: | |
jobs: | |
coding-standard: | |
name: "Coding Standard" | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ "ubuntu-latest" ] | |
php: [ "8.1" ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@2.27.0 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2, pecl | |
extensions: ds | |
- name: Install dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Check codestyle | |
run: vendor/bin/phpcs -s | |
static-analysis: | |
name: "Static Analysis" | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ "8.1" ] | |
os: [ "ubuntu-latest" ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@2.27.0 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2, pecl | |
extensions: ds | |
- name: Install dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- name: Analyze code with static-analysis | |
run: vendor/bin/phpstan analyse --no-progress | |
unit-tests: | |
name: "Unit Tests" | |
runs-on: "${{ matrix.os }}" | |
continue-on-error: "${{ matrix.experimental }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ "7.4", "8.0", "8.1", "8.2" ] | |
os: [ "ubuntu-latest" ] | |
experimental: [ false ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@2.27.0 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2, pecl | |
extensions: ds | |
- name: Install dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader ${{ matrix.composer-options }} | |
- name: Execute tests | |
run: vendor/bin/phpunit --colors=always --coverage-text |