ci: dual-runner smoke test
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
name: runner-smoke
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Windows host
|
||||
shell: powershell
|
||||
run: |
|
||||
Write-Output "OS=${{ runner.os }}"
|
||||
cargo --version
|
||||
node --version
|
||||
linux:
|
||||
runs-on: linux-x64
|
||||
steps:
|
||||
- name: Linux host
|
||||
shell: bash
|
||||
run: |
|
||||
echo "OS=${{ runner.os }}"
|
||||
uname -a
|
||||
git --version
|
||||
Reference in New Issue
Block a user