Skip to content

Compatibility v13 (#16) #139

Compatibility v13 (#16)

Compatibility v13 (#16) #139

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
testsuite:
name: all tests
runs-on: ubuntu-latest
strategy:
matrix:
env:
- { PHP: '8.3', TYPO3_VERSION: ^13.4 }
- { PHP: '8.2', TYPO3_VERSION: ^13.4 }
- { PHP: '8.3', TYPO3_VERSION: ^12.4 }
- { PHP: '8.2', TYPO3_VERSION: ^12.4 }
- { PHP: '8.1', TYPO3_VERSION: ^12.4 }
env: ${{ matrix.env }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: ./Build/Scripts/runTests.sh composer require typo3/cms-core="${TYPO3_VERSION}" --no-suggest
- name: Lint
run: ./Build/Scripts/runTests.sh composer ci:static
- name: Unit tests
run: ./Build/Scripts/runTests.sh unit
- name: Functional tests
run: ./Build/Scripts/runTests.sh functional