Skip to content

Commit

Permalink
Create test-timeout.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhardej committed Nov 27, 2023
1 parent a780309 commit c1b2c50
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-timeout.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Timeout test

on:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Timeout
run: sleep 300

confirm:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Confirm
run: echo "Confirm"


0 comments on commit c1b2c50

Please sign in to comment.