@@ -53,33 +53,37 @@ jobs:
5353
5454 test-rendering :
5555 name : Test rendering xml file to markdown and yaml
56- runs-on : ubuntu-latest
57- steps :
58- - name : Checkout repository
59- uses : actions/checkout@v4
60-
61- - name : Setup Python
62- uses : actions/setup-python@v4
63- with :
64- python-version : " 3.x"
65-
66- - name : Install dependencies
67- run : |
68- sudo apt-get update
69- sudo apt-get -y install libxml2-utils
70- python -m pip install --upgrade pip
71- python -m pip install PyYaml
72-
73- - name : Test rendering xml file to markdown
74- run : |
75- tools/write_standard_name_table.py --output-format md standard_names.xml
76- echo "The following changes will be committed when this pull request is merged (git diff Metadata-standard-names.md; "
77- echo "assuming that 'Metadata-standard-names.md' wasn't updated and matches the version in the authoritative branch):"
78- git diff Metadata-standard-names.md
79-
80- - name : Test rendering xml file to yaml
81- run : |
82- tools/write_standard_name_table.py --output-format yaml standard_names.xml
83- echo "The following changes will be committed when this pull request is merged (git diff Metadata-standard-names.yaml; "
84- echo "assuming that 'Metadata-standard-names.yaml' wasn't updated and matches the version in the authoritative branch):"
85- git diff Metadata-standard-names.yaml
56+ needs : [check-unique-standard-names, check-name-rules]
57+ uses : ./.github/workflows/render.yml
58+ with :
59+ commit_to_branch : false
60+ # runs-on: ubuntu-latest
61+ # steps:
62+ # - name: Checkout repository
63+ # uses: actions/checkout@v4
64+ #
65+ # - name: Setup Python
66+ # uses: actions/setup-python@v4
67+ # with:
68+ # python-version: "3.x"
69+ #
70+ # - name: Install dependencies
71+ # run: |
72+ # sudo apt-get update
73+ # sudo apt-get -y install libxml2-utils
74+ # python -m pip install --upgrade pip
75+ # python -m pip install PyYaml
76+ #
77+ # - name: Test rendering xml file to markdown
78+ # run: |
79+ # tools/write_standard_name_table.py --output-format md standard_names.xml
80+ # echo "The following changes will be committed when this pull request is merged (git diff Metadata-standard-names.md; "
81+ # echo "assuming that 'Metadata-standard-names.md' wasn't updated and matches the version in the authoritative branch):"
82+ # git diff Metadata-standard-names.md
83+ #
84+ # - name: Test rendering xml file to yaml
85+ # run: |
86+ # tools/write_standard_name_table.py --output-format yaml standard_names.xml
87+ # echo "The following changes will be committed when this pull request is merged (git diff Metadata-standard-names.yaml; "
88+ # echo "assuming that 'Metadata-standard-names.yaml' wasn't updated and matches the version in the authoritative branch):"
89+ # git diff Metadata-standard-names.yaml
0 commit comments