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 5e5be3e commit ff5bafeCopy full SHA for ff5bafe
.github/workflows/reusable-check-html-ids.yml
@@ -51,7 +51,8 @@ jobs:
51
name: html-ids-head.json.gz
52
path: /tmp
53
- name: 'Check for removed HTML IDs'
54
- run: >-
55
- python Doc/tools/check-html-ids.py -v check
56
- /tmp/html-ids-base.json.gz /tmp/html-ids-head.json.gz
57
- $([ -f Doc/tools/removed-ids.txt ] && echo "--exclude-file Doc/tools/removed-ids.txt")
+ run: |
+ # shellcheck disable=SC2046
+ python Doc/tools/check-html-ids.py -v check \
+ /tmp/html-ids-base.json.gz /tmp/html-ids-head.json.gz \
58
+ $([ -f Doc/tools/removed-ids.txt ] && echo "--exclude-file Doc/tools/removed-ids.txt")
0 commit comments