Merge pull request #646 from kevinmcox/GitHubCLI-munki #382
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
--- | |
name: plistlint | |
on: | |
push: | |
paths: | |
- "**.plist" | |
- "**.recipe" | |
- ".github/workflows/plistlint.yaml" | |
pull_request: | |
paths: | |
- "**.plist" | |
- "**.recipe" | |
- ".github/workflows/plistlint.yaml" | |
jobs: | |
plistlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install validate-plist-xml | |
run: pip install validate-plist-xml | |
- name: Validate Plist files | |
run: python3 -m validate_plist_xml |