Skip to content

fix "light" typo

fix "light" typo #1

Workflow file for this run

---
# -------------------------------------------------------------------------------------------------
# Job Name
# -------------------------------------------------------------------------------------------------
name: Docs
# -------------------------------------------------------------------------------------------------
# When to run
# -------------------------------------------------------------------------------------------------
on:
# Runs on Pull Requests
pull_request:
paths:
- 'docs/**'
- '!**.md'
# Runs on mainline Branch and Tags
push:
paths:
- 'docs/**'
- '!**.md'
branches:
- mainline
# -------------------------------------------------------------------------------------------------
# What to run
# -------------------------------------------------------------------------------------------------
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- build
- linkcheck
# - linkcheck2
name: "[Docs ${{ matrix.target }}]"
steps:
# ------------------------------------------------------------
# Checkout repository
# ------------------------------------------------------------
- name: Checkout repository
uses: actions/checkout@v4
- name: Check documentation
uses: devilbox-community/github-actions/.github/actions/shell-command-retry-action@master
with:
retries: 5
workdir: "${{ github.workspace }}/docs/"
command: |
make ${{ matrix.target }}