Skip to content

Fix use of TYPO3_MODE constant #84

Fix use of TYPO3_MODE constant

Fix use of TYPO3_MODE constant #84

Workflow file for this run

name: Tests
on:
pull_request: null
push:
branches:
- master
env:
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361
COMPOSER_ROOT_VERSION: "dev-master"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
typo3-php-versions:
- { typo3: 10, php: 7.4 }
- { typo3: 11, php: 7.4 }
- { typo3: 12, php: 8.1 }
name: "Run tests with PHP ${{ matrix.typo3-php-versions.php }} using TYPO3 ${{ matrix.typo3-php-versions.typo3 }}"
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.typo3-php-versions.php }}"
extensions: intl, mbstring, pdo_sqlite, pdo_mysql
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Start MySQL
run: sudo /etc/init.d/mysql start
# see https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v2"
- name: "Run Unit tests"
run: composer test-unit
- name: "Functional tests"
run: |
export typo3DatabaseName="typo3";
export typo3DatabaseHost="127.0.0.1";
export typo3DatabaseUsername="root";
export typo3DatabasePassword="root";
composer test-functional