Reflect the changes of taxonomy name in the main repository #272
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: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
generate-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest | |
uses: actions/checkout@master | |
with: | |
submodules: "recursive" | |
- name: Setup Python 3 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install Python requirements | |
run: pip install -r requirements.txt | |
- name: Run the generator script | |
run: python generate_docs.py site |