Skip to content

Commit 923c648

Browse files
authoredMar 9, 2025
Update Turtle_File_Quality_Control.yml
1 parent ec514f5 commit 923c648

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/Turtle_File_Quality_Control.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,18 @@ jobs:
5252
files = sys.argv[1:]
5353
all_valid = all(validate_turtle(file) for file in files)
5454
55-
with open('qc-status.txt', 'w') as f:
55+
with open('data/qc-status.txt', 'w') as f:
5656
f.write('valid' if all_valid else 'not valid')
5757
5858
if not all_valid:
5959
sys.exit(1)
6060
" > validate_ttl.py
6161
62-
# Step 5: Run Validation and Create QC Status File
62+
# Step 5: Run Validation and Create QC Status File in /data
6363
- name: Run Turtle Validation
6464
run: python validate_ttl.py data/AOPWikiRDF.ttl data/AOPWikiRDF-Genes.ttl data/AOPWikiRDF-Void.ttl
6565

66-
# Step 6: Commit and Push QC Status File (if changed)
66+
# Step 6: Commit and Push QC Status File to /data
6767
- name: Commit and Push QC Status
6868
run: |
6969
git config --global user.name "github-actions[bot]"

0 commit comments

Comments
 (0)