Feature/has accumulation date #61
Workflow file for this run
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: consistency check | |
on: | |
push: | |
pull_request: | |
env: | |
ONTOLOGY_PATH: "ontology/current-version" | |
jobs: | |
check-consistency: | |
name: "Check consistency" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
- name: "Setup Java" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'oracle' | |
java-version: '21' | |
- name: "Setup Python" | |
uses: actions/setup-python@v4 | |
- name: "Install Owlready2" | |
run: pip install owlready2 | |
- name: "Carry out consistency check" | |
run: python .github/workflows/consistency_check.py |