From af9fa6960ba4b07fc728260b80e8ab1f9528db41 Mon Sep 17 00:00:00 2001 From: pernisch Date: Thu, 28 Mar 2024 19:31:35 +0100 Subject: [PATCH] added OQuaRE ontology evoluation githubaction --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3a852b8 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +on: [push] + +# If repository allows actions write by default, this is not needed. +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + name: Evaluate ontologies + steps: + - uses: actions/checkout@v4 + # Configuration + # Java setup + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + # Python setup + - uses: actions/setup-python@v5 + with: + python-version: '3.9' + + - name: OQuaRE module + uses: kai-vu/oquare-metrics@v3.0 + with: + ontology-folders: ontologies \ No newline at end of file