Skip to content

Update docs

Update docs #139

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
testsuite:
name: all tests
runs-on: ubuntu-latest
strategy:
matrix:
env:
- { PHP: '8.1', TYPO3_VERSION: ^12.4 }
- { PHP: '8.2', TYPO3_VERSION: ^12.4 }
- { PHP: '8.3', TYPO3_VERSION: ^12.4 }
- { PHP: '8.2', TYPO3_VERSION: ~13.1.0 }
- { PHP: '8.3', TYPO3_VERSION: ~13.1.0 }
env: ${{ matrix.env }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: ./Build/Scripts/runTests.sh composer require typo3/cms-core="${TYPO3_VERSION}" --no-suggest
- name: Lint PHP
run: ./Build/Scripts/runTests.sh composer ci:php:lint
- name: PHP Coding Standards Fixer
run: ./Build/Scripts/runTests.sh composer ci:php:cs
- name: PHPStan
run: ./Build/Scripts/runTests.sh composer ci:php:stan
# - name: PHP Mess Detector
# run: ./Build/Scripts/runTests.sh composer ci:php:md
- name: Unit tests
run: ./Build/Scripts/runTests.sh unit
- name: Functional tests
run: ./Build/Scripts/runTests.sh functional