Skip to content

CI

CI #1062

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
schedule:
- cron: '0 7 * * *'
jobs:
build:
name: 'PHP ${{ matrix.php }}, TYPO3 ${{ matrix.typo3 }}'
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.1'
- '8.2'
typo3:
- ^11.5
- ^12.4
include:
- php: '8.0'
typo3: ^11.5
steps:
- uses: actions/checkout@v4
- name: Build
env:
PHP_VERSION: ${{matrix.php}}
TYPO3_VERSION: ${{matrix.typo3}}
run: docker-compose run --rm app sh -c "sudo composer self-update 2.6.2 && composer build"
- name: Cleanup
if: ${{ always() }}
run: docker-compose down --volumes