8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53aef4c commit 36efca4Copy full SHA for 36efca4
.github/workflows/test-bug-reproducer.yml
@@ -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