Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

build(deps): bump actions/checkout from 2 to 4 #6

build(deps): bump actions/checkout from 2 to 4

build(deps): bump actions/checkout from 2 to 4 #6

Workflow file for this run

# This is a GitHub workflow defining a set of jobs with a set of steps.
# ref: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#
name: Test docs
# Trigger the workflow's on all PRs and pushes so that other contributors can
# run tests in their own forks.
on:
pull_request:
paths:
- "docs/**"
- "**/schema.yaml"
- "**/test-docs.yaml"
push:
paths:
- "docs/**"
- "**/schema.yaml"
- "**/test-docs.yaml"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
workflow_dispatch:
jobs:
linkcheck:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
# chartpress, used by docs/conf.py, requires git history to set
# chart version and image tags correctly
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install deps
run: pip install -r docs/requirements.txt
- name: make linkcheck
run: |
cd docs
make linkcheck SPHINXOPTS='--color -W --keep-going'