This repository was archived by the owner on Aug 19, 2026. It is now read-only.
ci: update trigger branch to ci/test-docker-docs #1
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: Docker Docs Test Suite | |
| on: | |
| push: | |
| branches: | |
| - ci/test-docker-docs | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Docker documentation test suite | |
| run: bash tests/docker/run-tests.sh | |
| - name: Upload ISSUES.md on failure | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: issues-report | |
| path: ISSUES.md | |
| if-no-files-found: ignore |