Skip to content

docs: remove folders with single index files (#2617) #206

docs: remove folders with single index files (#2617)

docs: remove folders with single index files (#2617) #206

Workflow file for this run

name: HtmlTest
on:
push:
branches:
- 'main'
- '[0-9]+.[1-9][0-9]*.x'
paths:
- 'docs/**'
- 'docs-new/**'
pull_request:
branches:
- 'main'
- '[0-9]+.[1-9][0-9]*.x'
paths:
- 'docs/**'
- 'docs-new/**'
jobs:
htmltest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache HTMLTest packages
uses: actions/cache@v3
with:
path: |
docs/tmp/.htmltest
key: ${{ runner.os }}-htmltest
- name: Cache Hugo packages
uses: actions/cache@v3
with:
path: |
docs/tmp/.hugo
key: ${{ runner.os }}-hugo-${{ hashFiles('docs/go.sum') }}
- name: Check HTML
run: make htmltest