Update dependency squizlabs/php_codesniffer to v3.10.2 #132
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: CI Build | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '7.4' ] | |
name: Run CI PHP ${{ matrix.php }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup PHP | |
uses: nanasess/setup-php@master | |
with: | |
php-version: ${{ matrix.php }} | |
- run: php -v | |
- name: Run CI | |
run: | | |
composer validate | |
make ci |