Skip to content

[FEATURE] Solr 9 compatibility #1893

[FEATURE] Solr 9 compatibility

[FEATURE] Solr 9 compatibility #1893

Workflow file for this run

name: Unit and Functional Testing
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
name: TYPO3
runs-on: ubuntu-latest
strategy:
matrix:
typo3: [ 10.4, 11.5 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: Build/Test/runTests.sh -s composerInstall -t ${{ matrix.typo3 }}
- name: Run unit tests
run: Build/Test/runTests.sh -s unit
- name: Run functional tests
run: Build/Test/runTests.sh -s functional
- name: Upload coverage reports
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}