Drop support for old TYPO3, calendarize and PHP #241
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: Testing calendarize_news | |
on: | |
push: | |
pull_request: | |
# schedule: | |
# - cron: '10 3 * * 1' | |
jobs: | |
build: | |
# only run jobs via scheduled workflow in main repo, not in forks | |
if: (github.event_name == 'schedule' && github.repository == 'lochmueller/calendarize_news') || (github.event_name != 'schedule') | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- php: "7.4" | |
typo3: "10.4" | |
news: "8.6" | |
- php: "7.4" | |
typo3: "11.5" | |
news: "9.4" | |
- php: "7.4" | |
typo3: "11.5" | |
news: "10.0.3" | |
- php: "8.2" | |
typo3: "12.4" | |
news: "11.2" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Get composer cache directory | |
id: composercache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install the right version(s) | |
run: composer require "typo3/cms-core:^${{ matrix.typo3 }}" "typo3/cms-extbase:^${{ matrix.typo3 }}" "typo3/cms-workspaces:^${{ matrix.typo3 }}" "georgringer/news:^${{ matrix.news }}" -W | |
- name: composer validate | |
run: composer validate | |
- name: Run PHP CS Fixer checks | |
run: composer run tool:php-cs-fixer-check | |
#- name: Run phpstan checks | |
# run: composer run tool:phpstan | |
# continue-on-error: true | |
- name: Unit Tests with phpunit | |
run: composer run tool:phpunit -- | |
# start db | |
- name: Start MySQL | |
run: sudo /etc/init.d/mysql start | |
# functional tests | |
- name: Functional Tests | |
run: | | |
export typo3DatabaseName="typo3"; | |
export typo3DatabaseHost="localhost"; | |
export typo3DatabaseUsername="root"; | |
export typo3DatabasePassword="root"; | |
composer run tool:phpunit:functional -- | |
#- name: Run DepTrac | |
# run: composer run tool:deptrac |