Skip to content

Commit

Permalink
Merge branch '1.3.x' into 1.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jan 5, 2024
2 parents 73744f9 + 4547795 commit cdaaaa3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-projects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions

name: "Test projects"

on:
push:
branches:
- "1.3.x"

jobs:
test-projects:
name: "Test projects"
runs-on: "ubuntu-latest"

strategy:
matrix:
repository:
- "phpstan/lorem"
- "phpstan/ipsum"
- "phpstan/dolor"
- "packagist/private-packagist"

steps:
- uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: "${{ matrix.repository }}"
event-type: test_phpstan
client-payload: '{"ref": "1.10.x"}'

0 comments on commit cdaaaa3

Please sign in to comment.