Skip to content

Remove redundant code and import qualifiers (#142) #138

Remove redundant code and import qualifiers (#142)

Remove redundant code and import qualifiers (#142) #138

Workflow file for this run

name: CI Tests
on:
push:
branches:
- develop
pull_request:
# 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
jobs:
run-phpcs:
name: Run PHPCS
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ "8.1", "8.2", "8.3", "8.4" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
id: ci-setup
uses: ./.github/actions/ci-setup
with:
extensions: 'curl'
extensions-cache-key: run-phpcs-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, cs2pr, phpcs'
- name: Run PHPCS
continue-on-error: false
id: phpcs
run: composer phpcs
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
PHP_VERSION: ${{ matrix.php-version }}
- name: Show PHPCS results in PR
if: ${{ always() && steps.phpcs.outcome == 'failure' }}
run: cs2pr ./phpcs-report.xml
run-phpmd:
name: Run PHPMD
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
strategy:
matrix:
php-version: [ "8.1", "8.2", "8.3", "8.4" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
id: ci-setup
uses: ./.github/actions/ci-setup
with:
extensions: 'curl'
extensions-cache-key: run-phpunit-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, phpmd'
- name: Run PHPMD
continue-on-error: true
id: phpmd
run: composer phpmd
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
run-phpunit:
if: ${{ false }} # Disable for now :(
name: Run PHPUnit
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ "8.1", "8.2", "8.3" ]
wp-version: [ '6.6', 'latest' ]
coverage: [ true ]
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: wordpress_test
MYSQL_PASSWORD: password
MYSQL_USER: wp
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
env:
WORDPRESS_DB_NAME: wordpress_test
WORDPRESS_DB_PASS: password
WORDPRESS_DB_USER: wp
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP ${{ matrix.php-version }}
id: ci-setup
uses: ./.github/actions/ci-setup
with:
extensions: 'curl, mysql, mysqli, tar, zip'
extensions-cache-key: run-phpunit-${{ matrix.wp-version }}-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, phpunit'
- name: Run PHPUnit
continue-on-error: false
id: phpunit
run: composer phpunit
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
DB_PORT: ${{ job.services.mysql.ports[3306] }}
- name: Setup WordPress ${{ matrix.wp-version }}
run: bash bin/install-wp-tests.sh wordpress_test wp password localhost ${{ matrix.wp-version }} true
- name: Upload coverage to Codecov
if: ${{ github.event_name == 'pull_request' }}
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
run-phpstan:
name: Run PHPStan
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ "8.1", "8.2", "8.3", "8.4" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
id: ci-setup
uses: ./.github/actions/ci-setup
with:
extensions: 'curl'
extensions-cache-key: run-phpunit-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, phpstan'
- name: Run PHPStan
continue-on-error: true
id: phpstan
run: composer phpstan
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}