Skip to content

[BUGFIX] code style fix #30

[BUGFIX] code style fix

[BUGFIX] code style fix #30

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
build:
name: 'PHP ${{ matrix.php }}, TYPO3 ${{ matrix.typo3 }}'
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
typo3:
- '^11.5'
- '^12.4'
steps:
- uses: actions/checkout@v4
- name: Build
env:
PHP_VERSION: ${{matrix.php}}
TYPO3_VERSION: ${{matrix.typo3}}
run: docker-compose run --rm app composer build
- name: Cleanup
if: ${{ always() }}
run: docker-compose down --volumes