Skip to content

Commit

Permalink
Merge pull request #67 from Zsailer/downstream-tests
Browse files Browse the repository at this point in the history
Add workflow to test JupyterLab
  • Loading branch information
Zsailer authored Oct 20, 2021
2 parents eac6680 + e2f688f commit f5b87d7
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test JupyterLab

on:
push:
branches: "*"
pull_request:
branches: "*"

jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
pip install --upgrade pip
pip install "."
pip install --pre --upgrade jupyterlab[test]
pip freeze
- name: Run tests
run: |
python -m jupyterlab.browser_check --no-browser-test

0 comments on commit f5b87d7

Please sign in to comment.