diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml new file mode 100644 index 0000000..418f566 --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -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 \ No newline at end of file