name: CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Test CGL run: ./vendor/bin/phpcs - name: Execute PHPStan Code Quality run: ./vendor/bin/phpstan analyse - name: Execute PHPUnit Tests run: ./vendor/bin/phpunit