Add a Smoke test workflow
Some checks failed
CI/CD Pipeline / deploy_testing (push) Has been skipped
CI/CD Pipeline / deploy_production (push) Failing after 15s

This commit is contained in:
2025-08-27 03:40:09 +03:00
parent 243f89457f
commit cdb6d98ae7

View File

@@ -0,0 +1,14 @@
name: smoke
on:
push:
branches:
- '' # run on any branch push
workflow_dispatch: # allow manual run from the Actions tab
jobs:
hello:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: |
echo "Runner OK on branch: ${GITHUB_REF_NAME}"
        uname -a