[BUGFIX] Display issues correctly in ToC plugin #718
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |