We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3744d77 commit ff7a342Copy full SHA for ff7a342
.github/workflows/pull_request_ci.yml
@@ -8,6 +8,27 @@ on:
8
- release/*
9
10
jobs:
11
+ lint-xml:
12
+ name: Check standard_names.xml against schema file
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+
18
+ - name: Setup Python
19
+ uses: actions/setup-python@v4
20
+ with:
21
+ python-version: "3.x"
22
23
+ - name: Install dependencies
24
+ run: |
25
+ sudo apt-get update
26
+ sudo apt-get -y install libxml2-utils
27
28
+ - name: Check for duplicate standard names, descriptions
29
30
+ xmllint --noout --schema standard_names_v1_0.xsd standard_names.xml
31
32
check-unique-standard-names:
33
name: Check for duplicates in standard names
34
runs-on: ubuntu-latest
0 commit comments