Skip to content

Commit

Permalink
Create repo2docker.yml
Browse files Browse the repository at this point in the history
Build using GH actions
  • Loading branch information
jburel committed Nov 12, 2020
1 parent 8aa6e86 commit cc8ea3a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/repo2docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Builds the repository using repo2docker

---
name: repo2docker

on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: repo2docker install
run: pip install --upgrade jupyter-repo2docker
- name: Build container
run: repo2docker --no-run .

0 comments on commit cc8ea3a

Please sign in to comment.