Skip to content

Commit

Permalink
CI: Workflow to reproduce error on github runner
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Mar 30, 2024
1 parent 53aef4c commit 36efca4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-bug-reproducer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test bug reproducer
on:
pull_request:
workflow_dispatch:
push:
tags:
- "*"
branches:
- main

env:
MAIN_PYTHON_VERSION: '3.10.10'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:

test-bug-reproducer:
name: Test reproducing the bug on windows
runs-on: windows-latest
steps:
- name: Setup Python
uses: SMoraisAnsys/setup-python@test/no-pwshpath
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

0 comments on commit 36efca4

Please sign in to comment.