Remove test about deprecated LOCATE() function in DBAL SQLite platform #121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
name: "Test projects" | |
on: | |
push: | |
branches: | |
- "2.0.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@v3 | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
repository: "${{ matrix.repository }}" | |
event-type: test_phpstan | |
client-payload: '{"ref": "1.11.x"}' |