Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Project [myst]
name: Build Project [using jupyter-book]
on: [push]
jobs:
tests:
Expand All @@ -15,21 +15,24 @@ jobs:
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
- name: Install sphinxcontrib-tomyst
shell: bash -l {0}
run: |
git clone https://github.com/QuantEcon/sphinxcontrib-tomyst
cd sphinxcontrib-tomyst && python setup.py install
- name: Install quantecon-book-theme
shell: bash -l {0}
run: |
git clone https://github.com/QuantEcon/quantecon-book-theme
cd quantecon-book-theme
python setup.py install
cd ../ && rm -rf quantecon-book-theme
- name: Install sphinx-multitoc-numbering
shell: bash -l {0}
run: |
git clone https://github.com/executablebooks/sphinx-multitoc-numbering.git
cd sphinx-multitoc-numbering
python setup.py install
cd ../ && rm -rf sphinx-multitoc-numbering
- name: Install Dependencies
shell: bash -l {0}
run: |
pip install myst-nb
pip install jupyter-book
- name: Display Conda Environment Versions
shell: bash -l {0}
run: conda list
Expand All @@ -39,8 +42,7 @@ jobs:
- name: Build HTML
shell: bash -l {0}
run: |
pwd
make html
jb build lectures --path-output ./
- name: Preview Deploy to Netlify
uses: nwtgck/actions-netlify@v1.1
with:
Expand Down
88 changes: 0 additions & 88 deletions Makefile

This file was deleted.

Loading