All checks were successful
CI / Linux x86_64 (Forgejo) (push) Successful in 2s
Two prior CI runs (cc72db04andc411916) 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>
23 lines
430 B
YAML
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
|