2024-03-10 19:16:09 +01:00
|
|
|
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'
|
2024-03-13 06:05:14 +01:00
|
|
|
uses: actions/setup-python@v5
|
2024-03-10 19:16:09 +01:00
|
|
|
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
|