Skip to content

Merge remote-tracking branch 'kitodo/master' #24

Merge remote-tracking branch 'kitodo/master'

Merge remote-tracking branch 'kitodo/master' #24

Workflow file for this run

name: Unit and Functional Testing
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
typo3: [ 10.4, 11.5 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- 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