text-extract/.forgejo/workflows/ci.yml
flemming-it 965c96ea6e
All checks were successful
CI / Linux x86_64 (Forgejo) (push) Successful in 2s
ci: temporary smoke-test workflow to diagnose 2s CI failure
Two prior CI runs (cc72db04 and c411916) failed in 2 seconds
without producing any visible step output. The Forgejo Actions
log API does not expose run logs without a real session, so
isolate by replacing the workflow with a single echo-step.

If this run succeeds, the issue is in one of the original
workflow's steps (likely the second checkout of module-sdk).
If this run also fails in 2 seconds, the issue is structural
to the workflow header or the runner picking up text-extract.

Bumps 0.1.1 -> 0.1.2.

Signed-off-by: flemming-it <sf@flemming.it>
2026-05-01 17:54:35 +02:00

23 lines
430 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
smoke:
name: Linux x86_64 (Forgejo)
runs-on: ubuntu-latest
steps:
- name: Smoke
run: |
echo "runner alive"
echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE"
echo "GITHUB_REPOSITORY=$GITHUB_REPOSITORY"
echo "GITHUB_SHA=$GITHUB_SHA"
uname -a