-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgraded hmas to integrate olivaw v0.0.5 (#231)
- Loading branch information
1 parent
12984ac
commit 3b0b11e
Showing
4 changed files
with
57 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,27 @@ | ||
{ | ||
"ontology_url": "https://purl.org/hmas/", | ||
"ontology_prefix": "hmas", | ||
"ontology_namespace": "https://purl.org/hmas/", | ||
"term_distance_threshold": 3, | ||
"blocking_errors": [ | ||
"syntax-error", | ||
"owl-rl-constraint-violation" | ||
], | ||
"gist_index": "c4128ff5fec462d83e2ae8a229917537", | ||
"skipped_files": [] | ||
"skipped_errors": [], | ||
"skipped_tests": [], | ||
"skipped_subjects": [], | ||
"skip_for_test": { | ||
"profile-compatibility": [ | ||
"src/jacamo.ttl", | ||
"src/jade.ttl", | ||
"src/interaction-http.ttl", | ||
"all-fragments" | ||
] | ||
}, | ||
"skip_for_subject": {}, | ||
"project_prefixes": { | ||
"hctl": "https://www.w3.org/2019/wot/hypermedia#", | ||
"htv": "http://www.w3.org/2011/http#", | ||
"jsonld": "http://www.w3.org/ns/json-ld#" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: init-branch | ||
on: create | ||
|
||
jobs: | ||
init-branch: | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Getting ref type information | ||
shell: bash | ||
run: | | ||
IFS='/' read -ra PATHS <<< "${{ inputs.ref }}" | ||
echo "REF_TYPE=$(echo ${PATHS[1]})" >> $GITHUB_ENV | ||
- uses: Wimmics/olivaw/init-branch@v0.0.5 | ||
if: ${{ env.REF_TYPE != 'tags' }} | ||
with: | ||
repository: ${{ github.repository }} | ||
ref: ${{ github.ref }} | ||
gist-secret: ${{ secrets.GIST_SECRET }} | ||
init-badges: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
name: tests | ||
on: | ||
push: | ||
branches: | ||
- main | ||
name: olivaw-test | ||
on: push | ||
|
||
env: | ||
MAIN: 'main' | ||
jobs: | ||
tests: | ||
olivaw-test: | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Wimmics/olivaw/test-actions@v0.0.4 | ||
- run: | | ||
IFS='/' read -ra PATHS <<< "${{ github.ref }}" | ||
echo "BRANCH=$(echo ${PATHS[2]})" >> $GITHUB_ENV | ||
- uses: Wimmics/olivaw/test-actions@v0.0.5 | ||
with: | ||
repository: ${{ github.repository }} | ||
ref: ${{ github.ref }} | ||
gist-secret: ${{ secrets.GIST_SECRET }} | ||
model-test: true | ||
data-test: true | ||
commit-report: ${{ env.BRANCH == env.MAIN }} |
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