Skip to content

Commit cdaaaa3

Browse files
committed
Merge branch '1.3.x' into 1.4.x
2 parents 73744f9 + 4547795 commit cdaaaa3

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/test-projects.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2+
3+
name: "Test projects"
4+
5+
on:
6+
push:
7+
branches:
8+
- "1.3.x"
9+
10+
jobs:
11+
test-projects:
12+
name: "Test projects"
13+
runs-on: "ubuntu-latest"
14+
15+
strategy:
16+
matrix:
17+
repository:
18+
- "phpstan/lorem"
19+
- "phpstan/ipsum"
20+
- "phpstan/dolor"
21+
- "packagist/private-packagist"
22+
23+
steps:
24+
- uses: peter-evans/repository-dispatch@v2
25+
with:
26+
token: ${{ secrets.REPO_ACCESS_TOKEN }}
27+
repository: "${{ matrix.repository }}"
28+
event-type: test_phpstan
29+
client-payload: '{"ref": "1.10.x"}'

0 commit comments

Comments
 (0)