Skip to content

aktualizace phpstanu, tester a mockery #12

aktualizace phpstanu, tester a mockery

aktualizace phpstanu, tester a mockery #12

Workflow file for this run

name: Package CI
on:
pull_request:
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 7.0, 7.1 ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- run: make composer
- if: matrix.php == '7.1'
run: make phpstan
- run: make run-tests