Skip to content

Commit

Permalink
add a test build workflow for validating on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparrow0hawk authored May 23, 2022
1 parent f59a7ec commit c8b62fb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# copied from https://jupyterbook.org/publish/gh-pages.html?highlight=github%20pages

name: test-build

# Only run this when a PR suggests changes to main branch
on:
pull_request:
branches:
- main

# This job installs dependencies and builds the book
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
environment-file: environment.yml
auto-activate-base: false
activate-environment: arcdocs-jb

# Build the book
- name: Build the book
shell: bash -l {0}
run: |
conda activate arcdocs-jb
jupyter-book build ./book/

0 comments on commit c8b62fb

Please sign in to comment.