9 lines
351 B
YAML
9 lines
351 B
YAML
name: Test Runner
|
|
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: windows-host
|
|
steps:
|
|
- run: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command "Write-Output 'Running on Windows Server!'"
|
|
- run: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command "Get-ChildItem"
|
|
- run: rustc --version # Optional: Test Rust |