From cccd012912dc30640f0e3fd93430e86ff9fdde8b Mon Sep 17 00:00:00 2001 From: SabitOl Date: Sun, 17 May 2026 12:37:34 +0100 Subject: [PATCH 1/3] Modify cI.yml file to correct indentation error --- .github/workflows/cI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cI.yml b/.github/workflows/cI.yml index 00ea930..55e14df 100644 --- a/.github/workflows/cI.yml +++ b/.github/workflows/cI.yml @@ -29,14 +29,14 @@ jobs: # If the exit code is 0, the test passes # If the exit code is not 0, the test fails - name: Run disk-check - run: bash disk-check.sh + run: bash disk-check.sh # Step 4: Run key-hunter - name: Run key-hunter - run: bash key-hunter.sh + run: bash key-hunter.sh # Step 5: Run ram-check - name: Run ram-check - run: bash ram-check.sh + run: bash ram-check.sh From 2b24dfeb5bf527ac45278fac47266dc587d3c63d Mon Sep 17 00:00:00 2001 From: SabitOl Date: Sun, 17 May 2026 12:41:19 +0100 Subject: [PATCH 2/3] Modify cI.yml file to correct missing line --- .github/workflows/cI.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cI.yml b/.github/workflows/cI.yml index 55e14df..30dc17e 100644 --- a/.github/workflows/cI.yml +++ b/.github/workflows/cI.yml @@ -23,7 +23,10 @@ jobs: # Step 2: Make all test scripts executable # The runner is a fresh machine # it doesn't inherit permission from laptop - run: chmod +x scripts/*.sh + + # Make script executable + - name: Make scripts excutable + run: chmod +x *.sh # Step 3: Run disk-check.sh and check its exit code # If the exit code is 0, the test passes From 5b0ef262d55e30c26111791e74c3db2b5fed4968 Mon Sep 17 00:00:00 2001 From: SabitOl Date: Sun, 17 May 2026 12:44:38 +0100 Subject: [PATCH 3/3] Modify cI.yml file to add a word --- .github/workflows/cI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cI.yml b/.github/workflows/cI.yml index 30dc17e..e187051 100644 --- a/.github/workflows/cI.yml +++ b/.github/workflows/cI.yml @@ -1,6 +1,6 @@ name: Bash Scripts CI -# This workflow runs every time code is pushed to main +# This workflow runs every time code is pushed to main branch # and ever time a pull request targets main on: