Skip to content

Update environment.yml #8

Update environment.yml

Update environment.yml #8

Workflow file for this run

name: Build Binder Image
on:
push:
paths:
- environment.yml
- notebooks/**/*.ipynb
- exploratory_tools/**/*.ipynb
- tutorials/**/*.ipynb
pull_request:
paths:
- environment.yml
- notebooks/**/*.ipynb
- exploratory_tools/**/*.ipynb
- tutorials/**/*.ipynb
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install jupyter-repo2docker nbformat pyyaml
- name: Build Binder image
run: jupyter-repo2docker --no-run .
- name: Check Binder build status
if: failure()
run: exit 1
- name: Check imported packages in notebooks
run: python check_imports.py