mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
Try to run package_linter in github actions
This commit is contained in:
parent
ced368925b
commit
fa80296dc4
2 changed files with 21 additions and 0 deletions
20
.github/workflows/package_linter.yml
vendored
Normal file
20
.github/workflows/package_linter.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: YunoHost apps package linter
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 8 * * *'
|
||||
push:
|
||||
|
||||
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 .
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
.*
|
||||
!.github
|
||||
!.gitignore
|
||||
__pycache__
|
||||
secret.txt
|
||||
|
|
Loading…
Reference in a new issue