Skip to content

Commit

Permalink
Added xmllint check to test for real plist fields in PinConfigs
Browse files Browse the repository at this point in the history
closes #901
  • Loading branch information
dreamwhite authored and vit9696 committed Aug 5, 2024
1 parent 9a281b9 commit a6145da
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check plist files for 'real' key

on:
push:
pull_request:
workflow_dispatch:
release:
types: [published]

jobs:
check-plist:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install xmllint
run: sudo apt-get install libxml2-utils

- name: Find 'real' key in plist files
run: |
# Find all plist files and parse them using xmllint, searching for the 'real' key
for file in $(find . -type f -name "*.plist"); do
if xmllint --xpath "//real" "$file" 2>/dev/null; then
echo "::error::Found 'real' key in $file."
exit 1
fi
done
echo "No 'real' key found."

0 comments on commit a6145da

Please sign in to comment.