Files
ems/.gitea/workflows/test.yml
Dusan Vojacek 679777d140
Some checks failed
deploy / deploy (push) Successful in 11s
test / smoke-test (push) Failing after 13s
fix smoke test workflow
2026-04-05 18:25:32 +02:00

29 lines
603 B
YAML

name: test
on:
push:
branches:
- main
- feature/**
pull_request:
jobs:
smoke-test:
# Stejný label jako deploy.yml — výchozí act_runner má typicky jen `self-hosted`,
# ne `ubuntu-latest` (ten by vyžadoval GITEA_RUNNER_LABELS s docker:// image).
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Repo layout
run: |
test -f docker-compose.yml
test -f deploy/docker-compose.yml
test -x deploy/deploy.sh
- name: Runner info
run: |
uname -a
pwd
ls -la