Skip to content

Commit

Permalink
Test6
Browse files Browse the repository at this point in the history
  • Loading branch information
steveraysteveray committed Sep 20, 2023
1 parent ffc9396 commit e65a0a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
fi
echo "::set-output name=files::$files"
- name: Echo changed files
run: |
echo "Changed files: ${{ steps.getfile.outputs.files }}"
- name: Run Python script on changed files
run: |
IFS=$'\n' read -ra ADDR <<< "${{ steps.getfile.outputs.files }}"
Expand Down
3 changes: 1 addition & 2 deletions file1.shapes.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# imports: http://datashapes.org/dash
# prefix: file1

@base <https://example/file1> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix file1: <https://example/file1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
Expand All @@ -14,7 +13,7 @@
<https://example/file1>
a owl:Ontology ;
owl:imports <http://datashapes.org/dash> ;
owl:versionInfo "Created with TopBraid Composer" ;
owl:versionInfo "Created with TopBraid Composer" ;
.
file1:DestinationClass_1
a file1:Location ;
Expand Down
2 changes: 1 addition & 1 deletion subfolder/file2.shapes.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ file1:isPointOfShape
a owl:Ontology ;
owl:imports <http://datashapes.org/dash> ;
owl:imports <https://example/file1> ;
owl:versionInfo "Created with TopBraid Composer" ;
owl:versionInfo "Created with TopBraid Composer" ;
.
file2:ShouldFail
a file1:RandomOtherClass ;
Expand Down

0 comments on commit e65a0a8

Please sign in to comment.