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-02-19 14:01:54 +01:00
|
|
|
- name: 'Set up Python'
|
2022-12-21 22:21:42 +01:00
|
|
|
uses: actions/setup-python@v4
|
2023-02-19 14:01:54 +01:00
|
|
|
# https://github.com/marketplace/actions/setup-python
|
2022-12-21 22:21:42 +01:00
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
2023-02-19 14:01:54 +01:00
|
|
|
cache: 'pip' # caching pip dependencies
|
|
|
|
cache-dependency-path: '**/poetry.lock'
|
2022-12-21 22:21:42 +01:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install toml
|
2020-12-09 20:43:47 +01:00
|
|
|
|
2023-02-19 14:01:54 +01:00
|
|
|
- name: 'Clone github.com/YunoHost/package_linter'
|
2020-12-09 20:43:47 +01:00
|
|
|
run: |
|
|
|
|
git clone --depth=1 https://github.com/YunoHost/package_linter ~/package_linter
|
|
|
|
|
2023-02-19 14:01:54 +01:00
|
|
|
- name: 'Run YunoHost App Package Linter'
|
2020-12-09 20:43:47 +01:00
|
|
|
run: |
|
|
|
|
~/package_linter/package_linter.py .
|