blob: 12d38872cad717d4d6a4909870d2b98011a7a9f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
name: Android - Check XML formatting
on:
pull_request:
paths:
- .github/workflows/android-xml-tidy.yml
- android/app/src/main/**/*.xml
workflow_dispatch:
jobs:
xml-tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |-
sudo apt-get install tidy
source android/scripts/ci-android-xml.sh
tidy-verify-xml
|