Skip to content

[cicd testing] empty commit 2 #23

[cicd testing] empty commit 2

[cicd testing] empty commit 2 #23

Workflow file for this run

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."