Skip to content

Commit 6b6015e

Browse files
Create test-python.yml
1 parent 6164449 commit 6b6015e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test-python.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Python workflow
2+
on:
3+
push:
4+
workflow_dispatch:
5+
jobs:
6+
build:
7+
runs-on: [self-hosted, win-10-pro-x64]
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Set up Python 3.11.6
11+
uses: actions/setup-python@v5
12+
with:
13+
python-version: '3.11.6'
14+
- name: Display Python version
15+
run: python --version

0 commit comments

Comments
 (0)