1
0
Fork 0
ynh-apps_tools/.github/workflows/tests_make_readme.yml

23 lines
481 B
YAML
Raw Normal View History

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
2024-09-13 16:59:03 +02:00
- name: 'Set up Python 3.9'
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
2024-09-13 15:45:12 +02:00
- name: Install dependencies
run: pip install -r requirements.txt pytest
- name: launch pytest
2024-09-13 15:45:12 +02:00
run: cd readme_generator && pytest tests