Skip to content

Commit

Permalink
Make use of reusable workflows for QA
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzap committed Aug 25, 2023
1 parent f807048 commit 6a404be
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 76 deletions.
76 changes: 0 additions & 76 deletions .github/workflows/php-qa.yml

This file was deleted.

51 changes: 51 additions & 0 deletions .github/workflows/quality-assurance-php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: PHP Quality Assurance

on:
push:
paths:
- '**workflows/quality-assurance-php.yml'
- '**.php'
- '**phpcs.xml.dist'
- '**phpunit.xml.dist'
- '**psalm.xml'
workflow_dispatch:
inputs:
jobs:
required: true
type: choice
default: 'Run all'
description: 'Choose jobs to run'
options:
- 'Run all'
- 'Run PHPCS only'
- 'Run Psalm only'
- 'Run lint only'
- 'Run static analysis'
- 'Run unit tests only'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint-php:
uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main
if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run lint only') || (github.event.inputs.jobs == 'Run static analysis')) }}
with:
PHP_MATRIX: '["7.4", "8.0", "8.1", "8.2"]'
LINT_ARGS: '-e php --colors --show-deprecated ./Inpsyde'

coding-standards-analysis-php:
if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run PHPCS only') || (github.event.inputs.jobs == 'Run static analysis')) }}
uses: inpsyde/reusable-workflows/.github/workflows/coding-standards-php.yml@main

static-code-analysis-php:
if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run Psalm only') || (github.event.inputs.jobs == 'Run static analysis')) }}
uses: inpsyde/reusable-workflows/.github/workflows/static-analysis-php.yml@main

tests-unit-php:
if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run unit tests only')) }}
uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main
with:
PHP_MATRIX: '["7.4", "8.0", "8.1", "8.2"]'
PHPUNIT_ARGS: '--no-coverage'

0 comments on commit 6a404be

Please sign in to comment.