1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

ci(readme_generator): add a github actions to run tests

This commit is contained in:
Laurent Peuch 2024-03-10 19:16:09 +01:00 committed by Bram
parent 08cfdb5ee1
commit 8c38f33343

22
.github/workflows/tests_make_readme.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Run tests for make_readme.py
on: [push]
jobs:
test:
name: Run tests for make_readme.py
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Set up Python 3.9'
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tools/readme_generator/requirements.txt
pip install pytest
- name: launch pytest
run: cd tools/readme_generator && pytest tests