mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 19:36:52 +03:00
e254dfbb9c
The fix in 66568e3a39
prevented an error
when installing phpcompatibility/php-compatibility but there was still
a warning before that when installing dealerdirect/phpcodesniffer-composer-installer.
With Composer 2.3.9, this is now an error too, so we need to move
the config change before that: https://getcomposer.org/changelog/2.3.9
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
phpcs:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['7.4']
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
tools: phpcs
|
|
- run: phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p
|
|
|
|
phpcompatibility:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
php-versions: ['7.4']
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
- run: composer global config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true
|
|
- run: composer global require dealerdirect/phpcodesniffer-composer-installer
|
|
- run: composer global require phpcompatibility/php-compatibility
|
|
- run: ~/.composer/vendor/bin/phpcs . --standard=phpcompatibility.xml --warning-severity=0 --extensions=php -p
|
|
|
|
executable_php_files_check:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: |
|
|
if find -name "*.php" -executable -type f -print -exec false {} +
|
|
then
|
|
echo 'Good, no executable php scripts found'
|
|
else
|
|
echo 'Please unmark php scripts above as non-executable'
|
|
exit 1
|
|
fi
|