Updated PHPStan to commit ee33f1e48b5ae9d6e99500814c186cd31e7a764f #4060
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: "Other tests" | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/other-tests.yml' | |
- '.github/workflows/other-tests-run.yml' | |
- 'e2e/**' | |
- 'phpstan' | |
- '.phar-checksum' | |
- 'bootstrap.php' | |
push: | |
branches: | |
- "1.11.x" | |
paths: | |
- '.github/workflows/other-tests.yml' | |
- '.github/workflows/other-tests-run.yml' | |
- 'e2e/**' | |
- 'phpstan' | |
- '.phar-checksum' | |
- 'bootstrap.php' | |
jobs: | |
upload-phar: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: phar-file | |
path: phpstan.phar | |
other-tests: | |
needs: upload-phar | |
uses: ./.github/workflows/other-tests.yml | |
with: | |
ref: ${{ github.ref }} | |
phar-checksum: "always" |