chore(deps): bump ridedott/merge-me-action from 2.10.107 to 2.10.108 #202
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
# 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: | |
xml-validation: | |
name: "XML validation" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout repository" | |
uses: "actions/[email protected]" | |
- name: "Install PHP" | |
uses: "shivammathur/[email protected]" | |
with: | |
php-version: "latest" | |
coverage: "none" | |
- name: "Install dependencies (Composer)" | |
uses: "ramsey/[email protected]" | |
- name: "Validate ruleset" | |
uses: "szepeviktor/[email protected]" | |
with: | |
xml_ruleset: "Ramsey/ruleset.xml" | |
functional-tests: | |
name: "Standards Tests" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout repository" | |
uses: "actions/[email protected]" | |
- name: "Install PHP" | |
uses: "shivammathur/[email protected]" | |
with: | |
php-version: "latest" | |
coverage: "none" | |
ini-values: "short_open_tag=On" | |
- name: "Install dependencies (Composer)" | |
uses: "ramsey/[email protected]" | |
- name: "Run tests" | |
run: "composer test:standards" | |
debug-tests: | |
name: "Debug Tests" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout repository" | |
uses: "actions/[email protected]" | |
- name: "Install PHP" | |
uses: "shivammathur/[email protected]" | |
with: | |
php-version: "latest" | |
coverage: "none" | |
ini-values: "short_open_tag=On" | |
- name: "Install dependencies (Composer)" | |
uses: "ramsey/[email protected]" | |
- name: "Run PHP CodeSniffer" | |
run: "./vendor/bin/phpcs --standard=Ramsey --report=full tests/Errors || ( exit 0; )" |