Podpora pro php 8.3 #29
Workflow file for this run
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: Package CI | |
| on: | |
| pull_request: | |
| jobs: | |
| checks: | |
| name: Checks | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - run: make composer | |
| - run: make cs | |
| - run: make phpstan | |
| - run: make run-tests |