fd811d0692
ci / ruff lint (push) Failing after 31s
ci / mypy mcp_common (push) Failing after 37s
ci / pytest (push) Failing after 31s
ci / validate compose + Caddyfile (push) Failing after 31s
probe / probe shell + tools (push) Successful in 1s
ci / build & push to registry (push) Has been skipped
24 lines
441 B
YAML
24 lines
441 B
YAML
name: probe
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
probe-shell:
|
|
name: probe shell + tools
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: echo hello
|
|
run: echo "hello from runner"
|
|
|
|
- name: which shell
|
|
run: |
|
|
echo "SHELL=$SHELL"
|
|
echo "PWD=$PWD"
|
|
uname -a
|
|
which bash sh python python3 pip pipx node curl wget docker || true
|
|
|
|
- name: env dump
|
|
run: env | sort
|