Skip to content

[MAINTENANCE] Bump typo3/testing-framework from 6.16.7 to 6.16.8 #557

[MAINTENANCE] Bump typo3/testing-framework from 6.16.7 to 6.16.8

[MAINTENANCE] Bump typo3/testing-framework from 6.16.7 to 6.16.8 #557

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: [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