-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for TYPO3 11.5 and 12.4 only
- Loading branch information
1 parent
7f9bda0
commit 7368aef
Showing
111 changed files
with
288 additions
and
593 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name: "PHP-CI" | |
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "30 6 * * 1" | ||
|
||
|
@@ -21,6 +22,10 @@ jobs: | |
php-version: | ||
- "7.4" | ||
- "8.0" | ||
- "8.1" | ||
- "8.2" | ||
- "8.3" | ||
- "8.4" | ||
|
||
steps: | ||
- | ||
|
@@ -53,8 +58,8 @@ jobs: | |
name: "Run Linter" | ||
run: "composer lint:php" | ||
|
||
php-qs: | ||
name: "PHP QS" | ||
php-cs: | ||
name: "PHP CS" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
|
@@ -64,10 +69,13 @@ jobs: | |
matrix: | ||
command: | ||
- "test:phpcs" | ||
- "test:phpcompatibility" | ||
php-version: | ||
- "7.4" | ||
- "8.0" | ||
- "8.1" | ||
- "8.2" | ||
- "8.3" | ||
- "8.4" | ||
|
||
steps: | ||
- | ||
|
@@ -100,6 +108,37 @@ jobs: | |
name: "Run command" | ||
run: "composer ${{ matrix.command }}" | ||
|
||
php-compatibility: | ||
name: "PHP Compatibility" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
needs: "php-lint" | ||
|
||
steps: | ||
- name: "Checkout" | ||
uses: "actions/checkout@v2" | ||
- name: "Setup PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "8.4" | ||
extensions: "${{ env.PHP_EXTENSIONS }}" | ||
- name: "Validate composer.json and composer.lock" | ||
run: "composer validate --strict" | ||
- name: "Determine composer cache directory" | ||
id: "determine-composer-cache-directory" | ||
run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | ||
- name: "Cache dependencies installed with composer" | ||
uses: "actions/[email protected]" | ||
with: | ||
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | ||
key: "php-8.4-composer-${{ hashFiles('composer.lock') }}" | ||
restore-keys: "php-8.4-composer-" | ||
- name: "Install composer dependencies" | ||
run: "composer install --no-interaction --no-progress --no-suggest" | ||
- name: "Run command" | ||
run: "composer test:phpcompatibility" | ||
|
||
|
||
php-unit: | ||
name: "PHP Unit" | ||
|
@@ -112,15 +151,24 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- | ||
typo3-version: "^10.4" | ||
php-version: "7.4" | ||
- | ||
typo3-version: "^11.5" | ||
- typo3-version: "^11.5" | ||
php-version: "7.4" | ||
- | ||
typo3-version: "^11.5" | ||
- typo3-version: "^11.5" | ||
php-version: "8.0" | ||
- typo3-version: "^11.5" | ||
php-version: "8.1" | ||
- typo3-version: "^11.5" | ||
php-version: "8.2" | ||
- typo3-version: "^11.5" | ||
php-version: "8.3" | ||
- typo3-version: "^12.4" | ||
php-version: "8.1" | ||
- typo3-version: "^12.4" | ||
php-version: "8.2" | ||
- typo3-version: "^12.4" | ||
php-version: "8.3" | ||
- typo3-version: "^12.4" | ||
php-version: "8.4" | ||
|
||
steps: | ||
- | ||
|
@@ -154,5 +202,3 @@ jobs: | |
- | ||
name: "Run PHP unit tests" | ||
run: "composer test:phpunit" | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
###FORM### | ||
<!-- ###DATA### END--> | ||
</body> | ||
</html> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?php | ||
|
||
/** | ||
* @author Michael Wagner | ||
* | ||
|
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.