This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
Tenant id improvements #163
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: Code Quality Compliance | |
on: | |
pull_request: | |
types: [ assigned, opened ] | |
workflow_dispatch: | |
jobs: | |
code-quality: | |
name: Code Quality Compliance | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: ['7.4','8.0', '8.1'] | |
steps: | |
- name: "📥 Fetching Repository Contents" | |
uses: actions/checkout@v2 | |
- name: "💽 Installing PHP, Composer" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
coverage: none | |
ini-values: display_errors = on, error_reporting = E_ALL | |
tools: composer | |
- name: "💽 Installing Composer Packages" | |
run: composer install | |
- name: "🧪 Code Quality Checks" | |
run: composer wpcs-lint |