From a943925325cc300698f0a8a1be1169cfa2b655ca Mon Sep 17 00:00:00 2001 From: Abdulbari Date: Thu, 28 Aug 2025 17:53:33 +0300 Subject: [PATCH] Add a Smoke test workflow --- .gitea/workflows/smoke.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml index c09b0cb..e733af4 100644 --- a/.gitea/workflows/smoke.yml +++ b/.gitea/workflows/smoke.yml @@ -1,14 +1,15 @@ -name: smoke +# .gitea/workflows/sgeupdated_smoke.yml +name: sgeUpdated Smoke Test + on: push: branches: - - '**' # run on any branch push - workflow_dispatch: # allow manual run from the Actions tab + - main + jobs: - hello: - runs-on: ubuntu-22.04 + smoke-test: + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - run: | - echo "Runner OK on branch: ${GITHUB_REF_NAME}" -         uname -a \ No newline at end of file + - name: Simple Smoke Test + run: | + echo "✅ sgeUpdated smoke test ran successfully!"