Skip to content

CS nepodporuje PHP 8.3 #28

CS nepodporuje PHP 8.3

CS nepodporuje PHP 8.3 #28

Workflow file for this run

name: Code checks
on:
push:
branches: [ master ]
pull_request: null
jobs:
ecs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.0', '8.1', '8.2' ]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- run: composer install --prefer-dist --no-progress --no-suggest
- run: composer create-project nette/coding-standard temp/coding-standard --no-progress
- run: php temp/coding-standard/ecs check src tests --preset php80