Skip to content

Commit

Permalink
Merge branch 'master' into ll-fhir-ig-list
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamegrieve authored Aug 9, 2024
2 parents 0ec876d + b3f10c4 commit d9a3e33
Show file tree
Hide file tree
Showing 4 changed files with 269 additions and 83 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/validate-escaped-unicode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Check for Escaped Unicode Characters

on:
push:
paths:
- 'fhir-ig-list.json'
pull_request:
paths:
- 'fhir-ig-list.json'

jobs:
check-unicode:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check for escaped Unicode characters
run: |
if grep -q '\\u' fhir-ig-list.json; then
echo "Error: Escaped Unicode characters found in fhir-ig-list.json"
echo "Failing lines:"
grep -n '\\u' fhir-ig-list.json
exit 1
else
echo "No escaped Unicode characters found."
fi
Loading

0 comments on commit d9a3e33

Please sign in to comment.