Skip to content

[FEATURE] Added optional change password code for password change #192

[FEATURE] Added optional change password code for password change

[FEATURE] Added optional change password code for password change #192

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
typo3: ['^11.5']
php: ['7.4', '8.0', '8.1']
steps:
- uses: actions/checkout@v1
- name: Set up PHP Version
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xml
tools: composer
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: |
composer require typo3/cms-core:${{ matrix.typo3 }} --no-progress
git checkout composer.json
- name: Lint PHP
run: .Build/bin/phplint
- name: Unit Tests
run: .Build/bin/phpunit --colors -c Tests/Build/UnitTests.xml