docs(release): document Docker Hub tags incl. bare version tag #704
This file contains hidden or 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
| name: PHP Syntax Checker | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - release | |
| workflow_call: | |
| jobs: | |
| php-lint: | |
| name: PHP lint (${{ matrix.php-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-version: ['8.1', '8.4'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Set up PHP ${{ matrix.php-version }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| - name: Check PHP syntax | |
| run: | | |
| find . -name '*.php' -not -path './vendor/*' -exec php -l {} \; |