2022-01-08 10:04:57 +01:00
|
|
|
name: YunoHost apps package linter
|
|
|
|
|
|
|
|
on:
|
2022-11-28 11:20:21 +01:00
|
|
|
# Allow to manually trigger the workflow
|
|
|
|
workflow_dispatch:
|
2022-01-08 10:04:57 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 8 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-11-28 11:17:07 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-14 21:30:52 +01:00
|
|
|
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install toml
|
2022-01-08 10:04:57 +01:00
|
|
|
|
|
|
|
- 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 .
|