Skip to content

Commit

Permalink
Test downstream projects
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart authored and SylvainCorlay committed Apr 16, 2021
1 parent 8171ce4 commit 8c67a40
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test downstream projects

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

jobs:
tests:
runs-on: ubuntu-latest

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

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

- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
pip install pytest nbclient[test] ipyparallel[test]
pip freeze
- name: Run tests
run: |
pytest --pyargs nbclient
pytest --pyargs ipyparallel

0 comments on commit 8c67a40

Please sign in to comment.