Files
Codeforces/.gitea/workflows/smoke.yml
T
Ping 6dd3b02534
runner-smoke / smoke (push) Successful in 11s
ci: diagnostic smoke test
2026-09-09 15:39:41 +02:00

19 lines
573 B
YAML

name: runner-smoke
on: [push]
jobs:
smoke:
runs-on: windows-latest
steps:
- name: Dump environment
shell: powershell
run: |
Write-Output "PATH=$env:PATH"
Write-Output "--- bash ---"; where.exe bash 2>&1
Write-Output "--- git ---"; where.exe git 2>&1
Write-Output "--- cargo ---"; where.exe cargo 2>&1
Write-Output "--- node ---"; where.exe node 2>&1
Write-Output "--- powershell ---"; where.exe powershell 2>&1
- name: Default shell probe
run: echo DEFAULT_SHELL_OK