Skip to content

[TASK] Adjust repository information and requirements in composer.json #58

[TASK] Adjust repository information and requirements in composer.json

[TASK] Adjust repository information and requirements in composer.json #58

Workflow file for this run

name: testing
on: [push, pull_request]
jobs:
php-lint:
name: "PHP linter"
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: none
tools: composer:v2
- name: "Run PHP lint"
run: "composer test:php:lint"
strategy:
fail-fast: false
matrix:
php-version:
- 8.1
typoscript-lint:
name: "TypoScript linter"
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Run TypoScript lint"
uses: TYPO3-Continuous-Integration/TYPO3-CI-Typoscript-Lint@v1
with:
files: "./Configuration"
config_file: ".project/tests/typoscript-lint.yml"
php-cs-fixer:
name: "PHP CS Fixer"
runs-on: ubuntu-20.04
needs: php-lint
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
- name: "Composer Install"
run: "composer install"
- name: "Run PHP CS Fixer"
run: "composer test:php:cs"