Update dependency justinrainbow/json-schema to v6 #339
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] | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-18.04 ] | |
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: | | |
curl -sS https://get.symfony.com/cli/installer | bash | |
composer validate | |
export APP_ENV=test | |
make ci |