[release/v1] Fourth major update in v1 branch: Rename long_name --> description, expand list of abbreviations, update descriptions
#171
Workflow file for this run
This file contains hidden or 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: Pull request checks | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check-unique-standard-names: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.x" | |
| - name: Install xmllint | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install libxml2-utils | |
| - name: Check for duplicate standard names, descriptions | |
| run: | | |
| tools/check_xml_unique.py standard_names.xml | |
| tools/check_xml_unique.py standard_names.xml --field="description" | |
| check-name-rules: | |
| name: Check standard names against rules | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.x" | |
| # Install dependencies | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install libxml2-utils | |
| - name: Checks standard names against character rules | |
| run: | | |
| python3 tools/check_name_rules.py -s standard_names.xml | |
| check-rerendered-markdown: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.x" | |
| - name: Install xmllint | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install libxml2-utils | |
| - name: Check markdown has been rerendered | |
| run: | | |
| # Checks if the saved markdown matches freshly rendered markdown. | |
| # If this fails you have likely forgotten to rerun the write script | |
| # after adding a new name, or updating its description. | |
| checksum=$(sha256sum Metadata-standard-names.md) | |
| tools/write_standard_name_table.py standard_names.xml | |
| test "$checksum" = "$(sha256sum Metadata-standard-names.md)" | |