Skip to content

New translations locallang_be.xlf (Danish) #230

New translations locallang_be.xlf (Danish)

New translations locallang_be.xlf (Danish) #230

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
typo3: ['^12.4']
php: ['8.1', '8.2']
steps:
- uses: actions/checkout@v3
- name: Set up PHP Version
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xml
tools: composer
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: |
composer require typo3/cms-core:${{ matrix.typo3 }} --no-progress
git checkout composer.json
- name: Unit Tests
run: .Build/bin/phpunit --colors -c Tests/Build/UnitTests.xml