Bump peter-evans/create-pull-request from 6.0.5 to 7.0.5 (#233) #233
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: 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: 12, php: 8.1 } | |
- { typo3: 13, php: 8.1 } | |
name: "Run tests with PHP ${{ matrix.typo3-php-versions.php }} using TYPO3 ${{ matrix.typo3-php-versions.typo3 }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- 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@v3" | |
- 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 |