-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 846 Bytes
/
tests.yml
File metadata and controls
33 lines (30 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Fast Forward Test Suite"
on:
push:
pull_request:
types:
- opened
- synchronize
- reopened
workflow_dispatch:
inputs:
max-outdated:
description: Maximum number of outdated packages allowed by the dependencies command.
required: false
type: string
default: '-1'
publish-required-statuses:
description: Mirror required test matrix checks as commit statuses for workflow-dispatched runs.
required: false
type: boolean
default: false
permissions:
contents: read
statuses: write
jobs:
tests:
uses: php-fast-forward/dev-tools/.github/workflows/tests.yml@main
with:
max-outdated: ${{ inputs.max-outdated || -1 }}
publish-required-statuses: ${{ inputs.publish-required-statuses || false }}
secrets: inherit