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: Lint, analyse and test on highest supported PHP version | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 'highest' | |
| tools: composer | |
| - uses: actions/checkout@v6 | |
| - run: composer install --no-progress | |
| - run: composer run check-syntax | |
| - run: composer run check-codestyle | |
| - run: composer run static-analysis | |
| - run: composer run test |