Update tutorials #126
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |