diff options
author | Reiko Asakura | 2021-03-14 19:52:42 -0400 |
---|---|---|
committer | Reiko Asakura | 2021-03-14 19:52:42 -0400 |
commit | 930d5c0f6ca8c9da6731bb5f7160d96f729d48aa (patch) | |
tree | 86fa8c0321ca70eda26a0cd637e03d75f3ad7574 /.github/workflows/lint.yml | |
parent | Use ruamel instead of PyYAML (diff) | |
download | vds-libraries-930d5c0f6ca8c9da6731bb5f7160d96f729d48aa.tar.gz |
Check dupe NIDs in same library in lint workflow
Diffstat (limited to '.github/workflows/lint.yml')
-rw-r--r-- | .github/workflows/lint.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 81051d1..422a8a1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,6 +26,10 @@ jobs: run: | pip3 install ruamel.yaml + - name: Check NIDs duplicates + run: | + python3 scripts/nids-check-dupe.py + - name: Check NIDs sort run: | python3 scripts/nids-check-sort.py |