fix(ci): increase start period for mongo service container #41
This file contains 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: Code style check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: ~ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php_version: | |
- '7.4' | |
name: PHP ${{ matrix.php_version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP with pecl extension | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
- run: composer install | |
- run: composer cscheck |