Skip to content

Podpora pro php 8.3 #29

Podpora pro php 8.3

Podpora pro php 8.3 #29

Workflow file for this run

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