Skip to content

ci: turn on log streaming to try to debug integration-k8s hanging #441

ci: turn on log streaming to try to debug integration-k8s hanging

ci: turn on log streaming to try to debug integration-k8s hanging #441

Workflow file for this run

#
name: Docs
on:
push:
branches:
- main
pull_request:
workflow_call:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
docchecks:
name: Checks
runs-on: ubuntu-latest
outputs:
linkcheck-result: ${{ steps.linkcheck-step.outcome }}
spellcheck-result: ${{ steps.spellcheck-step.outcome }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Links
id: linkcheck-step
if: success() || failure()
uses: canonical/documentation-workflows/linkcheck@main
with:
working-directory: docs
- name: Spelling
id: spellcheck-step
if: success() || failure()
uses: canonical/documentation-workflows/spellcheck@main
with:
working-directory: docs