mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2025-03-15 09:23:50 +01:00

Now the GitLab CI jobs have the TYPO3 version first and the PHP version second, just like the GitHub Actions. This hopefully helps avoid confustion like we had in the past, and helps reduce cognitive load when working with the CI jobs. Fixes #1571
11 lines
304 B
YAML
11 lines
304 B
YAML
unit-v12-php8.2-highest:
|
|
extends: .default
|
|
image: ghcr.io/typo3/core-testing-php82:latest
|
|
stage: test
|
|
needs:
|
|
- build-composer-dependencies
|
|
- php-lint-php8.2
|
|
script:
|
|
- echo "Job ${CI_JOB_NAME}"
|
|
- composer require --no-progress typo3/cms-core:"^12.4"
|
|
- composer ci:tests:unit
|