mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 19:15:08 +08:00
71f143b4aa
Signed-off-by: Simon L <szaimen@e.mail.de>
32 lines
775 B
YAML
32 lines
775 B
YAML
name: PHP Deprecation Detector
|
|
# See https://github.com/wapmorgan/PhpDeprecationDetector
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
psalm:
|
|
name: PHP Deprecation Detector
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up php8.1
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.1
|
|
extensions: apcu
|
|
coverage: none
|
|
|
|
- name: Run script
|
|
run: |
|
|
set -x
|
|
cd php
|
|
composer global require wapmorgan/php-deprecation-detector dev-master
|
|
composer install
|
|
composer run php-deprecation-detector | tee -i ./phpdd.log >/dev/null
|
|
if grep "Total issues:" ./phpdd.log; then
|
|
exit 1
|
|
fi
|