[olg] Translation Updates #156
Workflow file for this run
This file contains hidden or 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: HTML Build on Windows | |
on: [pull_request] | |
jobs: | |
preview: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Anaconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
auto-activate-base: true | |
miniconda-version: 'latest' | |
python-version: "3.12" | |
environment-file: environment.yml | |
activate-environment: quantecon | |
- name: Download "build" folder (cache) | |
uses: dawidd6/action-download-artifact@v9 | |
with: | |
workflow: cache-windows.yml | |
branch: main | |
name: build-cache-windows | |
path: _build | |
- name: Display Conda Environment Versions | |
shell: bash -l {0} | |
run: conda list | |
- name: Display Pip Versions | |
shell: bash -l {0} | |
run: pip list | |
- name: Build HTML | |
shell: bash -l {0} | |
run: | | |
jb build lectures --path-output ./ -nW --keep-going | |
- name: Upload Execution Reports (HTML) | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: execution-reports | |
path: _build/html/reports |