Skip to content

chore(deps): bump ridedott/merge-me-action from 2.10.83 to 2.10.93 #232

chore(deps): bump ridedott/merge-me-action from 2.10.83 to 2.10.93

chore(deps): bump ridedott/merge-me-action from 2.10.83 to 2.10.93 #232

# GitHub Actions Documentation: https://docs.github.com/en/actions
name: "build"
on:
push:
branches:
- "main"
tags:
- "*"
pull_request:
branches:
- "main"
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
env:
COMPOSER_ROOT_VERSION: "1.99.99"
jobs:
coding-standards:
name: "Coding standards"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/[email protected]"
- name: "Install PHP"
uses: "shivammathur/[email protected]"
with:
php-version: "latest"
extensions: "bcmath, ctype, gmp"
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/[email protected]"
- name: "Check syntax (php-parallel-lint)"
run: "composer dev:lint:syntax"
- name: "Check coding standards (PHP_CodeSniffer)"
run: "composer dev:lint:style"
static-analysis:
name: "Static analysis"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/[email protected]"
- name: "Install PHP"
uses: "shivammathur/[email protected]"
with:
php-version: "latest"
extensions: "bcmath, ctype, gmp"
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/[email protected]"
- name: "Statically analyze code (PHPStan)"
run: "composer dev:analyze:phpstan"
code-coverage:
name: "Code coverage"
needs: ["coding-standards", "static-analysis"]
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/[email protected]"
- name: "Install PHP"
uses: "shivammathur/[email protected]"
with:
php-version: "latest"
extensions: "bcmath, ctype, gmp"
coverage: "pcov"
ini-values: "memory_limit=-1"
- name: "Install dependencies (Composer)"
uses: "ramsey/[email protected]"
- name: "Run unit tests (PHPUnit)"
run: "composer dev:test:coverage:ci"
- name: "Publish coverage report to Codecov"
uses: "codecov/[email protected]"
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
unit-tests:
name: "Unit tests"
needs: ["code-coverage"]
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
php:
- "8.1"
- "8.2"
- "8.3"
composer-deps: ["lowest", "highest"]
steps:
- name: "Checkout repository"
uses: "actions/[email protected]"
- name: "Install PHP"
uses: "shivammathur/[email protected]"
with:
php-version: "${{ matrix.php }}"
extensions: "bcmath, ctype, gmp"
coverage: "none"
- name: "Install dependencies (Composer)"
uses: "ramsey/[email protected]"
with:
dependency-versions: "${{ matrix.composer-deps }}"
- name: "Run unit tests (PHPUnit)"
if: "${{ matrix.composer-deps == 'highest' }}"
run: "composer dev:test:unit"
- name: "Run unit tests, with deprecation notices turned off (PHPUnit)"
if: "${{ matrix.composer-deps == 'lowest' }}"
run: "composer dev:test:unit -- -d 'error_reporting=E_ALL & ~E_DEPRECATED'"