Files
sgeUpdated/.gitea/workflows/smoke.yml
Workflow config file is invalid. Please check your config file: yaml: line 14: could not find expected ':'
Abdulbari 5bd98fb09d
Some checks failed
CI/CD Pipeline / deploy_testing (push) Has been skipped
CI/CD Pipeline / deploy_production (push) Failing after 40s
update a Smoke test workflow
2025-08-27 03:42:02 +03:00

14 lines
331 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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