8000 CI: Workflow to reproduce error on github runner · SMoraisAnsys/setup-python@36efca4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 36efca4

Browse files
committed
CI: Workflow to reproduce error on github runner
1 parent 53aef4c commit 36efca4

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test bug reproducer
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- "*"
8+
branches:
9+
- main
10+
11+
env:
12+
MAIN_PYTHON_VERSION: '3.10.10'
13+
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
17+
18+
jobs:
19+
20+
test-bug-reproducer:
21+
name: Test reproducing the bug on windows
22+
runs-on: windows-latest
23+
steps:
24+
- name: Setup Python
25+
uses: SMoraisAnsys/setup-python@test/no-pwshpath
26+
with:
27+
python-version: ${{ env.MAIN_PYTHON_VERSION }}

0 commit comments

Comments
 (0)
0