Skip to content

Commit f68767d

Browse files
committed
ci: add minimal smoke workflow (ubuntu/windows/macos) to diagnose startup failures
1 parent 403709a commit f68767d

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/ci-smoke.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: ci-smoke
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
permissions: {}
8+
9+
jobs:
10+
smoke-linux:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Print context
14+
run: |
15+
echo "event=$GITHUB_EVENT_NAME"
16+
echo "actor=$GITHUB_ACTOR"
17+
echo "ref=$GITHUB_REF"
18+
echo "sha=$GITHUB_SHA"
19+
- name: Hello
20+
run: echo hello from ubuntu
21+
22+
smoke-windows:
23+
runs-on: windows-latest
24+
steps:
25+
- name: Hello
26+
run: echo hello from windows
27+
28+
smoke-macos:
29+
runs-on: macos-latest
30+
steps:
31+
- name: Hello
32+
run: echo hello from macos

0 commit comments

Comments
 (0)