Update BMW tunes to 202305 #10
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: Validate MSQ | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
xmllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install xmllint | |
run: | | |
sudo apt-get -y --no-install-recommends install libxml2-utils | |
- name: Validate MSQ files | |
run: | | |
find -type f -name "*.msq" -exec xmllint --schema ./schema.xsd --noout {} + |