Skip to content

Commit

Permalink
Merge pull request #5 from peckadesign/p7packages-150-shared-workflows
Browse files Browse the repository at this point in the history
peckadesign/p7packages#150 - fix workflow_call inputs
  • Loading branch information
AloisJasa authored Dec 7, 2023
2 parents 9c8515d + 401241b commit d34790c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: CodingStandard

on:
workflow_call:
php:
required: false
type: string
default: "8.1"
inputs:
php:
required: false
type: string
default: "8.1"
jobs:
cs:
timeout-minutes: 10
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: PHPStan

on:
workflow_call:
php:
required: false
type: string
default: "8.1"
inputs:
php:
required: false
type: string
default: "8.1"
jobs:
phpstan:
timeout-minutes: 10
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: Unit tests

on:
workflow_call:
php:
required: false
type: string
default: "8.1"
inputs:
php:
required: false
type: string
default: "8.1"
jobs:
unit:
timeout-minutes: 10
Expand Down

0 comments on commit d34790c

Please sign in to comment.