-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (31 loc) · 1.06 KB
/
cwl-run-dqa.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Run Data Quality Analysis Assessment CWL workflow
on:
workflow_dispatch:
push:
branches: [ master ]
jobs:
dqa-cwl-workflow:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cwlref-runner
mkdir -p $GITHUB_WORKSPACE/output/tmp-outdir
echo "triplestore_password: ${{ secrets.TRIPLESTORE_PASSWORD }}" >> support/config-cwl-dqa.yml
- name: Run CWL workflow
run: |
cwl-runner --outdir $GITHUB_WORKSPACE/output --tmp-outdir-prefix $GITHUB_WORKSPACE/output/tmp-outdir/ --tmpdir-prefix $GITHUB_WORKSPACE/output/tmp-outdir/tmp- cwl/workflows/workflow-dqa.cwl support/config-cwl-dqa.yml
- name: Upload DQA output artifact
uses: actions/upload-artifact@v1
with:
name: dqa-output
path: ${{github.workspace}}/output