Allow local projects to use git_blacklist.ignore_patterns configuration #47
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: Testing Suite | |
on: [push] | |
jobs: | |
PHP: | |
strategy: | |
matrix: | |
image: [ | |
'srcoder/development-php:php74-fpm', | |
'srcoder/development-php:php80-fpm', | |
'srcoder/development-php:php81-fpm' | |
] | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.image }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Testing Suite | |
run: | | |
composer2 install --dev --prefer-dist --no-scripts --no-progress --optimize-autoloader --no-interaction -vvv | |
composer2 show | |
composer2 exec -v grumphp run | |
shell: bash |