SAL-1088-account-bank-names-bol auto-commit #28
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
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
extensions: xdebug, soap | |
coverage: xdebug | |
- name: vvv | |
run: php -v | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Cache dependencies installed with composer | |
uses: actions/[email protected] | |
with: | |
path: ~/.composer/cache | |
key: php7.4-composer-locked-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
php7.4-composer-locked- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: CI | |
run: composer ci | |
- name: Run tests | |
run: composer coverage |