mirror of
https://github.com/YunoHost-Apps/scovie_ynh.git
synced 2024-09-03 20:16:29 +02:00
24 lines
461 B
YAML
24 lines
461 B
YAML
|
name: YunoHost apps package linter
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
schedule:
|
||
|
- cron: '0 8 * * *'
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: 'Clone YunoHost apps package linter'
|
||
|
run: |
|
||
|
git clone --depth=1 https://github.com/YunoHost/package_linter ~/package_linter
|
||
|
|
||
|
- name: 'Run linter'
|
||
|
run: |
|
||
|
~/package_linter/package_linter.py .
|