Create concretes #19
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
extensions: mbstring, intl, bcmath | |
coverage: none | |
- name: Composer Install | |
run: composer install --no-interaction | |
- name: Generate Transfer | |
run: APPLICATION_ENV=DE vendor/bin/console transfer:generate | |
continue-on-error: true | |
- name: code-sniffer | |
run: composer phpcs | |
continue-on-error: true | |
- name: PHPStan | |
run: composer phpstan | |
continue-on-error: true | |
- name: PHPLint | |
run: composer phplint | |
continue-on-error: true |