We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3aa164 commit 3f704d0Copy full SHA for 3f704d0
1 file changed
.github/workflows/fail-test.yml
@@ -0,0 +1,24 @@
1
+name: Fail Test
2
+
3
+on:
4
+ push:
5
+ branches: [ main, master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ failing-job:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: This will succeed
16
+ run: echo "Starting the workflow"
17
18
+ - name: This will FAIL intentionally
19
+ run: |
20
+ echo "Forcing failure..."
21
+ exit 1
22
23
+ - name: This never runs
24
+ run: echo "I will never execute"
0 commit comments