Update reason.yml #1
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: Ontology CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
reasoning: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Download HermiT Reasoner | |
run: | | |
wget -O hermit-reasoner.jar http://www.hermit-reasoner.com/1.4.3.456/hermit-reasoner-1.4.3.456.jar | |
- name: Run HermiT Reasoner | |
run: | | |
java -cp hermit-reasoner.jar org.semanticweb.HermiT.cli.CommandLine --input-format=turtle --input electrochemistry.ttl --ontology electrochemistry.ttl | |
env: | |
JAVA_HOME: /usr/lib/jvm/java-11-openjdk |