Bump version to 1.9.6000 #2
Workflow file for this run
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: 'Linting XML' | |
on: | |
push: | |
paths: | |
- '**.xml' | |
pull_request: | |
paths: | |
- '**.xml' | |
# Allow manually triggering the workflow. | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up xmllint | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libxml2-utils | |
- name: Linting XML files | |
run: 'find . -type f -iname "*.xml" | xargs xmllint --noout' |