Skip to content

Fix doctrine CI (#758) #223

Fix doctrine CI (#758)

Fix doctrine CI (#758) #223

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Test projects"
on:
push:
branches:
- "2.0.x"
permissions:
contents: read
jobs:
test-projects:
name: "Test projects"
runs-on: "ubuntu-latest"
strategy:
matrix:
repository:
- "phpstan/lorem"
- "phpstan/ipsum"
- "phpstan/dolor"
- "packagist/private-packagist"
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3
with:
egress-policy: audit
- uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3.0.0
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: "${{ matrix.repository }}"
event-type: test_phpstan
client-payload: '{"ref": "2.1.x"}'