Skip to content

CI

CI #930

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
schedule:
- cron: '0 7 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '7.4'
- '8.0'
- '8.1'
typo3:
- '^11.5'
elasticsearch:
- '5'
exclude:
- php: '8.0'
typo3: '^10.4'
- php: '8.1'
typo3: '^10.4'
steps:
- uses: actions/checkout@v4
- name: Build
env:
PHP_VERSION: ${{matrix.php}}
TYPO3_VERSION: ${{matrix.typo3}}
ELASTICSEARCH_VERSION: ${{matrix.elasticsearch}}
run: docker-compose run --rm app composer build
- name: Cleanup
if: ${{ always() }}
run: docker-compose down --volumes