Add groups names for (not yet shipped) Xiaomi SM8150 #79
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: check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt -y install libxml2-utils | |
- run: | | |
if [ -f manifest.xsd ]; then | |
xmllint --noout --schema manifest.xsd *.xml | |
else | |
xmllint --noout *.xml | |
fi |