1
0
Fork 0
ynh-apps_tools/.github/workflows/tests_make_readme.yml
2024-09-14 12:00:12 +02:00

22 lines
481 B
YAML

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@v5
with:
python-version: '3.9'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt pytest
- name: launch pytest
run: cd readme_generator && pytest tests