From 02f0ff7ad80bf4d8aa0c303f0c9ab89d09fc86ee Mon Sep 17 00:00:00 2001 From: bahdotsh Date: Sun, 6 Apr 2025 21:07:02 +0530 Subject: [PATCH] deleted sample workflow --- .github/workflows/background-test.yml | 36 --------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/background-test.yml diff --git a/.github/workflows/background-test.yml b/.github/workflows/background-test.yml deleted file mode 100644 index 982229c..0000000 --- a/.github/workflows/background-test.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Background Process Test - -on: - workflow_dispatch: - -jobs: - test-background: - runs-on: ubuntu-latest - steps: - - name: Background process with sleep - run: | - echo "Starting background process..." - sleep 5 & - echo "Background process started, PID: $!" - echo "This should complete after the background process" - sleep 1 - echo "Foreground process finished, but we should still be waiting for background" - - - name: This step should only run after the background process completes - run: echo "If you see this, background process handling works!" - - test-multiple-background: - runs-on: ubuntu-latest - steps: - - name: Multiple background processes - run: | - echo "Starting multiple background processes" - sleep 3 & - echo "Started first background process" - sleep 6 & - echo "Started second background process" - echo "Waiting for all background processes to complete" - # The workflow should automatically wait for both processes - - - name: Follow-up step - run: echo "All background processes completed!"