Skip to content

Commit bca2479

Browse files
committed
add simple workflow
1 parent f23695e commit bca2479

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/smoke.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Mac and Windows Smoke
2+
3+
run-name: ${{ github.actor }} is running smoke tests
4+
on:
5+
push:
6+
branches: ["bc/gha"]
7+
pull_request:
8+
types:
9+
- created
10+
jobs:
11+
Smoke-Windows:
12+
runs-on: windows-latest
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
- name: Set up Python 3.13
17+
uses: actions/setup-python@v3
18+
with:
19+
python-version: "3.11"

0 commit comments

Comments
 (0)