add hasSolvent and hasSolute #4
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: EMMO check | |
on: [pull_request] | |
jobs: | |
emmocheck: | |
name: EMMO Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install EMMOntoPy | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U setuptools wheel | |
pip install -r requirements.txt | |
- name: Run EMMO Check - chemical-substance | |
run: | | |
emmocheck --verbose --url-from-catalog \ | |
--skip test_namespace \ | |
--skip test_quantity_dimension \ | |
--configfile=.github/utils/emmocheck_config.yml \ | |
chemical-substance.ttl | |