Skip to content

Create concretes

Create concretes #19

Workflow file for this run

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