mirror of
https://github.com/YunoHost-Apps/scrutiny_ynh.git
synced 2024-09-03 20:16:24 +02:00
31 lines
725 B
YAML
31 lines
725 B
YAML
name: YunoHost apps package linter
|
|
|
|
on:
|
|
# Allow to manually trigger the workflow
|
|
workflow_dispatch:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install toml pyparsing six
|
|
|
|
- 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 .
|