Skip to content

composer (master)(deps-dev): bump the development-dependencies group with 8 updates #3223

composer (master)(deps-dev): bump the development-dependencies group with 8 updates

composer (master)(deps-dev): bump the development-dependencies group with 8 updates #3223

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
# file-version: 1.0
name: "Continuous Integration"
on:
- pull_request
- push
permissions:
contents: read
security-events: read
issues: read
pull-requests: read
checks: read
concurrency:
group: "${{ github.event_name }}-${{ github.workflow }}-${{ github.head_ref || github.run_id }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
validate-all:
name: "Validate Project"
uses: "mimmi20/ci/.github/workflows/validate-all.yml@8.5"
with:
skip-validate-yaml: false
skip-validate-md: false
validate-php:
name: "Validate PHP"
uses: "mimmi20/ci/.github/workflows/validate-php.yml@8.5"
with:
extensions: "ctype, curl, dom, fileinfo, iconv, intl, mbstring, simplexml, tokenizer, xml, xmlwriter"
ini-values: "opcache.enable=1, opcache.fast_shutdown=0, zend.assertions=1, assert.exception=On, intl.default_locale=de, intl.use_exceptions=1, zend.exception_ignore_args=0"
composer-options: "--optimize-autoloader --prefer-dist --prefer-stable -v"
skip-validate-composer: false
skip-phplint: true
skip-check-composer: true
skip-ec-checker: false
dependency-analyser-options: "--ignore-dev-in-prod-deps --ignore-unknown-classes"
install:
name: "Install Project"
needs:
- "validate-all"
- "validate-php"
uses: "mimmi20/ci/.github/workflows/install-php.yml@8.5"
with:
extensions: "ctype, curl, dom, fileinfo, iconv, mbstring, intl, simplexml, tokenizer, xml, xmlwriter"
ini-values: "opcache.enable=1, opcache.fast_shutdown=0, zend.assertions=1, assert.exception=On, intl.default_locale=de, intl.use_exceptions=1, zend.exception_ignore_args=0"
composer-options: "--optimize-autoloader --prefer-dist --prefer-stable -v"
skip-librabbitmq-install: true
skip-libgif-install: true
# analytics:
# name: "Project Analysis"
#
# permissions:
# security-events: write
# id-token: write
# contents: read
# issues: read
# pull-requests: read
# checks: read
#
# needs: "install"
#
# uses: "mimmi20/ci/.github/workflows/analytics-php.yml@8.5"
# with:
# extensions: "ctype, curl, dom, fileinfo, iconv, intl, mbstring, simplexml, tokenizer, xml, xmlwriter"
# ini-values: "opcache.enable=1, opcache.fast_shutdown=0, zend.assertions=1, assert.exception=On, intl.default_locale=de, intl.use_exceptions=1, zend.exception_ignore_args=0"
# composer-options: "--optimize-autoloader --prefer-dist --prefer-stable -v"
# skip-php-cs-fixer: false
# skip-phpcs: false
# skip-phpstan: false
# skip-rector: false
# use-code-scanning: true
# phpcs-options: ""
# tests:
# name: "UnitTests"
#
# needs: "analytics"
#
# uses: "mimmi20/ci/.github/workflows/test-php.yml@8.5"
# with:
# extensions: "ctype, dom, fileinfo, intl, simplexml, tokenizer, xml, xmlwriter"
# ini-values: "opcache.enable=1, opcache.fast_shutdown=0, zend.assertions=1, assert.exception=On, intl.default_locale=de, intl.use_exceptions=1, zend.exception_ignore_args=0"
# coverage: "xdebug"
# composer-options: "--optimize-autoloader --prefer-dist --prefer-stable -v"
# test-name: ""
# min-msi: 0
# min-covered-msi: 0
# skip-librabbitmq-install: true
# skip-libgif-install: true
# upload-codecov: true
# upload-codeclimate: true
# upload-coveralls: true
# upload-flag: ""
# use-phpstan: true
# secrets:
# ENV_CODECLIMATE_API_KEY: ${{ secrets.CODECLIMATE_API_KEY }}
# ENV_CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# ENV_STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
# This is a meta job to avoid to have to constantly change the protection rules
# whenever we touch the matrix.
tests-status:
name: "CI Status"
runs-on: "ubuntu-latest"
if: always()
needs:
- "install"
steps:
- name: Failing run
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') }}
run: exit 1
- name: Successful run
if: ${{ !(contains(needs.*.result, 'failure')) && !(contains(needs.*.result, 'skipped')) && !(contains(needs.*.result, 'cancelled')) }}
run: exit 0