We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73744f9 + 4547795 commit cdaaaa3Copy full SHA for cdaaaa3
.github/workflows/test-projects.yml
@@ -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