We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb0389 commit 6f5dbeeCopy full SHA for 6f5dbee
1 file changed
.github/workflows/ci.yml
@@ -18,7 +18,9 @@ jobs:
18
19
- uses: actions/setup-node@v4
20
with:
21
- node-version: 18.x
+ node-version: '20'
22
+
23
+ - uses: oven-sh/setup-bun@v2
24
25
- name: Install Python
26
if: steps.cache-execution.outputs.cache-hit != 'true'
@@ -35,6 +37,18 @@ jobs:
35
37
- name: Install jupyter book 2.0
36
38
run: pip install "jupyter-book>=2.0.0a0"
39
40
+ - name: Install mystmd (QuantEcon fork)
41
+ run: |
42
+ git clone --branch quantecon --depth 1 \
43
+ https://github.com/QuantEcon/mystmd.git /tmp/qe-mystmd
44
+ cd /tmp/qe-mystmd
45
+ bun install
46
+ bun run build
47
+ npm install -g /tmp/qe-mystmd/packages/mystmd
48
49
+ - name: Verify mystmd version
50
+ run: myst --version
51
52
- name: Build HTML
53
working-directory: ./lectures
54
run: jupyter book build --html --execute
0 commit comments