mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Merge pull request #10239 from nupplaphil/feat/drone_lint
Enable PHP linting per Drone
This commit is contained in:
commit
6a99de9799
2 changed files with 31 additions and 18 deletions
32
.drone.yml
32
.drone.yml
|
@ -11,4 +11,34 @@ steps:
|
|||
- name: Check default
|
||||
image: friendicaci/transifex
|
||||
commands:
|
||||
- /check-messages.sh
|
||||
- /check-messages.sh
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: php7.3-lint
|
||||
|
||||
steps:
|
||||
- name: Test
|
||||
image: php:7.3
|
||||
commands:
|
||||
- ./bin/composer.phar run lint
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: php7.4-lint
|
||||
|
||||
steps:
|
||||
- name: Test
|
||||
image: php:7.4
|
||||
commands:
|
||||
- ./bin/composer.phar run lint
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: php8.0-lint
|
||||
|
||||
steps:
|
||||
- name: Test
|
||||
image: php:8.0
|
||||
commands:
|
||||
- ./bin/composer.phar run lint
|
||||
|
|
17
.github/workflows/lint.yml
vendored
17
.github/workflows/lint.yml
vendored
|
@ -2,23 +2,6 @@ name: Lint
|
|||
on: pull_request
|
||||
|
||||
jobs:
|
||||
php-linters:
|
||||
name: php${{ matrix.php-versions }} lint
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['7.3', '7.4', '8.0']
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up php${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@master
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
coverage: none
|
||||
- name: Lint
|
||||
run: bin/composer.phar run lint
|
||||
|
||||
php-cs-fixer:
|
||||
name: php-cs check
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue