Skip to content

Update tutorials

Update tutorials #126

name: failure_free_docs
on:
pull_request:
permissions:
contents: read
jobs:
checks-docs-for-failures:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check PR for failures
run: |
if [[ -e ./docs/fail ]]; then
echo "ERROR: Failing docs found in the ./docs/fail/ directory!"
echo "Try retriggering the rundoc job to see if the failures are intermittent."
echo "If the failure persists, notify the language owner."
exit 1
else
echo "No failing docs found"
fi