Fix #399 - Add missing htaccess information #3646
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: Test | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.0', '8.1', '8.2' ] | |
typo3: [ '11', '12' ] | |
exclude: | |
- php: '8.0' | |
typo3: '12' | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup PHP with PECL extension | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: imagick | |
- name: Composer install | |
run: composer require typo3/minimal="^${{ matrix.typo3 }}" --dev --optimize-autoloader --prefer-dist | |
- name: Composer phpstan | |
run: composer phpstan | |
- name: Composer test | |
run: composer test |