Skip to content

Commit

Permalink
Merge pull request #152 from EnvironmentOntology/thessen-patch-1
Browse files Browse the repository at this point in the history
Big COVID branch many pattern changes
  • Loading branch information
diatomsRcool authored Mar 18, 2021
2 parents b2e4647 + 6a63ef3 commit d6fca0d
Show file tree
Hide file tree
Showing 188 changed files with 2,821,019 additions and 1,914,296 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/qc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 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 main 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.2.26

# 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@v2

- 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

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ src/patterns/pattern_owl_seed.txt
src/ontology/Dockerfile
src/patterns/all_pattern_terms.txt
src/ontology/reports
src/ontology/tmp
src/ontology/imports/*_terms_combined.txt
Loading

0 comments on commit d6fca0d

Please sign in to comment.