Skip to content

Commit 3cc2b06

Browse files
committed
Add initial repo2docker GHA workflow
1 parent 46bf9ed commit 3cc2b06

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: repo2docker CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
12+
- name: Set up Python 3.7
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: 3.7
16+
17+
- name: Install repo2docker
18+
run: |
19+
python -m pip install --upgrade pip
20+
python -m pip install jupyter-repo2docker
21+
22+
- name: Build dask-tutorial Docker image
23+
run: jupyter-repo2docker --no-run --debug .

0 commit comments

Comments
 (0)