-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (45 loc) · 1.02 KB
/
ci.yml
File metadata and controls
51 lines (45 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
schedule:
- cron: '0 7 * * *'
jobs:
build:
name: 'PHP ${{ matrix.php }}, TYPO3 ${{ matrix.typo3 }}, Composer lowest: ${{ matrix.composer_lowest }}'
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
- '8.3'
typo3:
- ^12.4.3
- ^13.4
composer_lowest:
- '0'
- '1'
include:
- php: '8.1'
typo3: ^12.4.3
composer_lowest: '0'
- php: '8.1'
typo3: ^12.4.3
composer_lowest: '1'
steps:
- uses: actions/checkout@v5
- name: Build
env:
PHP_VERSION: ${{matrix.php}}
TYPO3_VERSION: ${{matrix.typo3}}
COMPOSER_PREFER_LOWEST: ${{matrix.composer_lowest}}
run: docker compose run --rm app composer build
- name: Cleanup
if: ${{ always() }}
run: docker compose down --volumes