Added 4.8 and fixed email. #29
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: test | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
push: | |
branches: ['4.8.x'] | |
pull_request: | |
branches: ['4.8.x'] | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
php-version: [8.0] | |
os: ['ubuntu-latest'] | |
include: | |
- os: 'ubuntu-latest' | |
php-version: '8.0' | |
phpunit-version: '9.6.10' | |
composer-version: 'latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php-version }} on ${{ matrix.os }} | |
uses: shivammathur/setup-php@verbose | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, intl | |
ini-values: post_max_size=256M, max_execution_time=180 | |
coverage: xdebug | |
tools: phpunit:${{ matrix.phpunit-version }}, composer:${{ matrix.composer-version }} | |
- name: Install composer | |
run: composer install | |
- name: Run linting | |
run: vendor/bin/phpcs | |
- name: Run quality rules | |
run: vendor/bin/phpstan analyse src tests | |
- name: Run tests | |
run: XDEBUG_MODE=coverage && phpunit -v -c tests/phpunit.xml --coverage-text --strict-coverage --stop-on-risky | |
shell: bash | |
- name: Slack Notification | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: custom | |
fields: commit,repo,ref,author | |
custom_payload: | | |
{ | |
attachments: [{ | |
color: '${{ job.status }}' === 'success' ? 'good' : '${{ job.status }}' === 'failure' ? 'danger' : 'warning', | |
text: `${process.env.AS_AUTHOR} has pushed ${process.env.AS_COMMIT} in ${process.env.AS_REPO} with test status indicating ${{ job.status }}.`, | |
}] | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
MATRIX_CONTEXT: ${{ toJson(matrix) }} | |
if: always() # Pick up events even if the job fails or is canceled. |