Skip to content

Commit 1a65e5b

Browse files
committed
reupload DI workflow github action from LC branch
1 parent 2f42a77 commit 1a65e5b

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Test DI Workflow
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
run-miniwdl:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: '3.8'
19+
20+
- name: Install Docker
21+
run: |
22+
curl -fsSL https://get.docker.com -o get-docker.sh
23+
sh get-docker.sh
24+
sudo usermod -aG docker $USER
25+
26+
- name: Install MiniWDL
27+
run: |
28+
python -m pip install --upgrade pip
29+
pip install miniwdl
30+
31+
- name: Run di WDL with pushed Docker Image
32+
run: |
33+
make docker-run-di
34+
35+
- name: Build Docker Image
36+
run: |
37+
make docker-build-local
38+
39+
- name: Run di WDL with local Docker Image based on Dockerfile
40+
run: |
41+
make wdl-run-di

0 commit comments

Comments
 (0)