19 lines
573 B
YAML
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
|