2020-12-09 20:43:47 +01:00
|
|
|
name: YunoHost apps package linter
|
|
|
|
|
|
|
|
on:
|
2022-12-21 22:21:42 +01:00
|
|
|
# Allow to manually trigger the workflow
|
|
|
|
workflow_dispatch:
|
2021-11-22 19:59:56 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
2020-12-09 20:43:47 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '0 8 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-12-21 22:21:42 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v4
|
2022-12-21 22:21:42 +01:00
|
|
|
with:
|
2023-08-22 19:52:36 +02:00
|
|
|
python-version: '3.9'
|
2022-12-21 22:21:42 +01:00
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
- name: Install dependencies
|
2022-12-21 22:21:42 +01:00
|
|
|
run: |
|
2023-08-22 19:52:36 +02:00
|
|
|
python -m pip install --upgrade pip
|
2022-12-21 22:21:42 +01:00
|
|
|
pip install toml
|
2020-12-09 20:43:47 +01:00
|
|
|
|
2023-08-17 21:55:12 +02:00
|
|
|
- name: 'Clone YunoHost apps package linter'
|
2020-12-09 20:43:47 +01:00
|
|
|
run: |
|
|
|
|
git clone --depth=1 https://github.com/YunoHost/package_linter ~/package_linter
|
|
|
|
|
2023-08-17 21:55:12 +02:00
|
|
|
- name: 'Install requirements'
|
2023-08-22 19:52:36 +02:00
|
|
|
run: pip3 install toml
|
2023-08-17 21:55:12 +02:00
|
|
|
|
|
|
|
- name: 'Run linter'
|
2020-12-09 20:43:47 +01:00
|
|
|
run: |
|
|
|
|
~/package_linter/package_linter.py .
|