mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
name: Coding Standard
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "_test/demo-package/**"
|
|
- ".github/workflows/_internal-coding-standard.yaml"
|
|
- "coding-standard/**"
|
|
- "!**/*.md"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "_test/demo-package/**"
|
|
- ".github/workflows/_internal-coding-standard.yaml"
|
|
- "coding-standard/**"
|
|
- "!**/*.md"
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
type: string
|
|
default: '*'
|
|
description: The version of the coding standard to use.
|
|
required: false
|
|
path:
|
|
type: string
|
|
default: '_test/demo-package'
|
|
description: Path to run the coding standard on.
|
|
required: true
|
|
|
|
jobs:
|
|
compute_matrix:
|
|
if: "!startsWith(github.head_ref, 'release-please')"
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.supported-version.outputs.matrix }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: ./supported-version
|
|
with:
|
|
kind: currently-supported
|
|
id: supported-version
|
|
- run: echo ${{ steps.supported-version.outputs.matrix }}
|
|
|
|
coding-standard:
|
|
needs: compute_matrix
|
|
strategy:
|
|
matrix: ${{ fromJSON(needs.compute_matrix.outputs.matrix) }}
|
|
fail-fast: false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
tools: composer:v${{ matrix.composer }}
|
|
coverage: none
|
|
|
|
- uses: './coding-standard'
|
|
with:
|
|
version: ${{ github.event.inputs.version || '*' }}
|
|
path: ${{ github.event.inputs.path || '_test/demo-package' }} |