File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments