Skip to content

Commit

Permalink
XML Validate (#335)
Browse files Browse the repository at this point in the history
* Create Workflow / XML Vvalidate
  • Loading branch information
andrewjswan authored Sep 23, 2024
1 parent 7735cba commit be30dfa
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/workflow_xml_validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Workflow / XML validate

on:
push:
branches: [main]
paths:
- "**.xml"
pull_request:
paths:
- "**.xml"
workflow_dispatch:

jobs:
yamllint:
name: 🧹 XML Validate
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out configuration from GitHub
uses: actions/checkout@v4
- name: 🚀 Run XML Validate
uses: action-pack/valid-xml@v1
with:
file-endings: ".xml"

0 comments on commit be30dfa

Please sign in to comment.