update upload/download_artifact versions #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: caseologue error essential | |
on: [workflow_dispatch, push, pull_request] | |
jobs: | |
upload_edam: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: download edam | |
run: wget https://raw.githubusercontent.com/edamontology/edamontology/main/EDAM_dev.owl | |
- name: upload edam | |
uses: actions/upload-artifact@v4 | |
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: '-e -E' | |
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' |