29 lines
667 B
YAML
29 lines
667 B
YAML
---
|
|
name: Lint
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
xml-linters:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Download schema
|
|
run: wget https://apps.nextcloud.com/schema/apps/info.xsd
|
|
- name: Lint info.xml
|
|
uses: ChristophWurst/xmllint-action@v1
|
|
with:
|
|
xml-file: ./appinfo/info.xml
|
|
xml-schema-file: ./info.xsd
|
|
php-cs-fixer:
|
|
name: PHP-CS-Fixer
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: PHP-CS-Fixer
|
|
uses: docker://oskarstark/php-cs-fixer-ga
|
|
with:
|
|
args: --dry-run --diff lib
|