Skip to content

Activate unit tests for 4.x-ocr branch #13

Activate unit tests for 4.x-ocr branch

Activate unit tests for 4.x-ocr branch #13

Workflow file for this run

name: Unit and Functional Testing
on:
push:
branches: [master, 4.x-ocr]
pull_request:
branches: [master, 4.x-ocr]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
typo3: [9.5, 10.4]
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