Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mondo ODK migration #3639

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/qc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Basic ODK workflow

name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "ontology_qc"
ontology_qc:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container: obolibrary/odkfull:v1.4.2

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

- name: Run ontology QC checks
env:
DEFAULT_BRANCH: master
run: cd src/ontology && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' test IMP=false PAT=false


11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,22 @@ src/ontology/*.db
src/ontology/edit-merged-relation-graph.tsv.gz

src/patterns/imports/seed.txt
*.norm
src/dosdp-tools-*
src/ontology/.cogs
src/ontology/imports/omo_terms.txt
.vscode
src/ontology/mondo-ncit.owl
src/ontology/mondo-full.owl

src/patterns/imports/seed_sorted.txt

src/scripts/exclusion_reasons.csv
src/ontology/.template.db
src/ontology/mondo-ingest.db
src/ontology/subsets/mondo-rare.owl
subsets/mondo-rare.owl
src/metadata/mondo.md
src/metadata/mondo.yml
src/metadata/README.md
src/ontology/imports/*_terms_combined.txt
Loading
Loading