Skip to content

[CLEANUP] remove unused typoscript linter #24

[CLEANUP] remove unused typoscript linter

[CLEANUP] remove unused typoscript linter #24

Workflow file for this run

name: testing
on: [push, pull_request]
jobs:
php-lint:
name: "PHP linter"
runs-on: ubuntu-22.04
steps:
- name: "Checkout"
uses: actions/checkout@v4
- 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.2
- 8.3
php-cs-fixer:
name: "PHP CS Fixer"
runs-on: ubuntu-22.04
needs: php-lint
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- name: "Composer Install"
run: "composer install"
- name: "Run PHP CS Fixer"
run: "composer test:php:cs"