We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46bf9ed commit 3cc2b06Copy full SHA for 3cc2b06
.github/workflows/ci-repo2docker.yaml
@@ -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