Skip to content

Commit

Permalink
Merge pull request #18 from maanst/newWorkflow
Browse files Browse the repository at this point in the history
New workflow for curation only
  • Loading branch information
matuskalas authored Sep 6, 2023
2 parents c1a351e + 452b89f commit 5a5438d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/caseologue_curation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: caseologue curation

on: [workflow_dispatch]

jobs:

upload_edam:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: download edam
run: wget https://raw.githubusercontent.com/edamontology/edamontology/main/EDAM_dev.owl
- name: upload edam
uses: actions/upload-artifact@v2
with:
name: input_ontology
path: EDAM_dev.owl

caseologue:
needs: upload_edam
uses: ./.github/workflows/caseologue_python.yml
with:
edam_path: '../EDAM_dev.owl'
caseologue_options: '-c'

report:
needs: upload_edam
uses: ./.github/workflows/caseologue_robot_report.yml
with:
edam_path: '../EDAM_dev.owl'

reason:
needs: upload_edam
uses: ./.github/workflows/caseologue_robot_reason.yml
with:
edam_path: '../EDAM_dev.owl'

0 comments on commit 5a5438d

Please sign in to comment.