Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Add deprecation note #523

Add deprecation note

Add deprecation note #523

Workflow file for this run

name: PHP Tests and CS
on: [ push, pull_request ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
coverage: none
- name: Install Composer dependencies
run: composer install --prefer-dist --no-interaction
working-directory: ./Website/htdocs/mpmanager
- name: Execute tests
run: vendor/bin/phpunit --verbose
working-directory: ./Website/htdocs/mpmanager
- name: PhpCS
run: composer phpcs
working-directory: ./Website/htdocs/mpmanager