Upload book workflow #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: [ main ] | |
repository_dispatch: | |
types: [ update ] | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: write | |
jobs: | |
test_tutorial_scripts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install requirements | |
run: | | |
cd new-website | |
cd utils | |
pip install -r requirements.txt | |
sudo apt-get install -y poppler-utils | |
sudo apt-get install -y wkhtmltopdf | |
- name: Test tutorial fetching and export | |
run: | | |
cd new-website | |
cd utils/tutorials | |
python3 test_fetch_tutorials.py | |
- name: test tutorials util functions | |
run: | | |
cd new-website | |
cd utils/tutorials | |
python3 test_utils.py | |
- name: Test tutorials build pdf book functions | |
run: | | |
cd new-website | |
cd utils/tutorials | |
python3 test_build_pdf_book.py | |