[cicd testing] empty commit #13
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 Simulator | |
| # This triggers on every push or can be run manually from the Actions tab | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| simulate-failure: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Log Intent | |
| run: echo "Starting the workflow... everything looks fine so far." | |
| - name: passes no matter what | |
| run: | | |
| echo "yay passed" | |
| # Any non-zero exit code tells GitHub the step failed | |
| exit 0 | |
| - name: This won't run | |
| run: echo "You will never see this message because the step above failed." |