Skip to content

Commit

Permalink
Add check/autogenerate-notebooks to CI (#1172)
Browse files Browse the repository at this point in the history
* Add check/autogenerate-notebooks to CI

* Switch deps file
  • Loading branch information
charlesyuan314 authored Jul 23, 2024
1 parent 0db17f0 commit 313c4b6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
pip install --no-deps -e .
- run: |
check/pylint
mypy:
runs-on: ubuntu-latest
steps:
Expand All @@ -116,3 +116,19 @@ jobs:
pip install --no-deps -e .
- run: |
check/mypy
autogenerate-notebooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ts-graphviz/setup-graphviz@v1
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev_tools/requirements/envs/docs.env.txt
pip install --no-deps -e .
- run: |
check/autogenerate-notebooks

0 comments on commit 313c4b6

Please sign in to comment.