aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-check-only.yml4
-rw-r--r--.github/workflows/ci.yml4
2 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci-check-only.yml b/.github/workflows/ci-check-only.yml
index 42c2e35..0519310 100644
--- a/.github/workflows/ci-check-only.yml
+++ b/.github/workflows/ci-check-only.yml
@@ -29,6 +29,10 @@ jobs:
- run: cargo ci --check-${{ matrix.item }}
+ - name: Check translated docs structure consistency
+ if: matrix.item == 'markdown-code'
+ run: cargo ci --check-docs-structure
+
- name: Upload docs test result on failure
if: failure() && matrix.item == 'markdown-code'
uses: actions/upload-artifact@v4
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4ef1bbb..a8e1281 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -31,6 +31,10 @@ jobs:
- run: cargo ci --check-${{ matrix.item }}
+ - name: Check translated docs structure consistency
+ if: matrix.item == 'markdown-code'
+ run: cargo ci --check-docs-structure
+
- name: Upload docs test result on failure
if: failure() && matrix.item == 'markdown-code'
uses: actions/upload-artifact@v4