Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/check-code-table-notations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check code-table notation uniqueness

on:
push:
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
notation-uniqueness:
name: WMDR notation uniqueness
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Check out repository
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: "3.13"

- name: Check code-table notations
run: python scripts/check_notation_uniqueness.py --tables-dir tables_en
Loading
Loading