Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Pulling refs/heads/main into main #3860

Pulling refs/heads/main into main

Pulling refs/heads/main into main #3860

Workflow file for this run

name: "Test the documentation for errors"
on:
push:
branches: [ main ]
pull_request:
types:
- opened
- synchronize
- reopened
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
test:
if: ${{ github.repository == 'splunk/public-o11y-docs' || github.repository == 'splunk/private-o11y-docs' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install pip
run: pip3 install --upgrade pip
- name: Install requirements
run: pip3 install -r requirements.txt --root-user-action=ignore
- name: Test the docs
run: make test