@@ -73,22 +73,43 @@ jobs:
7373 name : ${{ steps.wheel.outputs.wheel_name }}
7474 path : dist/${{ steps.wheel.outputs.wheel_name }}
7575
76+ tests_3_9 :
77+ uses : ./.github/workflows/tests.yml
78+ with :
79+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
80+ python_versions : ' ["3.9"]'
81+ wheel : true
82+ wheelhouse : true
83+ standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
84+ secrets : inherit
85+
7686 tests :
7787 uses : ./.github/workflows/tests.yml
7888 with :
7989 ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
80- python_versions : ' ["3.9", "3. 10", "3.11"]'
81- wheel : ${{ matrix.python-version == '3.9' }}
90+ python_versions : ' ["3.10", "3.11"]'
91+ wheel : false
8292 wheelhouse : true
8393 standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
8494 secrets : inherit
8595
96+ tests_any_3_9 :
97+ uses : ./.github/workflows/tests.yml
98+ with :
99+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
100+ python_versions : ' ["3.9"]'
101+ wheel : true
102+ wheelhouse : false
103+ standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
104+ test_any : true
105+ secrets : inherit
106+
86107 tests_any :
87108 uses : ./.github/workflows/tests.yml
88109 with :
89110 ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
90- python_versions : ' ["3.9", "3. 10", "3.11"]'
91- wheel : ${{ matrix.python-version == '3.9' }}
111+ python_versions : ' ["3.10", "3.11"]'
112+ wheel : false
92113 wheelhouse : false
93114 standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
94115 test_any : true
@@ -211,11 +232,11 @@ jobs:
211232 draft_release :
212233 name : " Draft Release"
213234 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
214- needs : [style, tests, docs, examples, retro_232, retro_231, retro_222, docker_tests]
235+ needs : [style, tests, tests_3_9, tests_any, tests_any_3_9, docs, examples, retro_232, retro_231, retro_222, docker_tests]
215236 runs-on : ubuntu-latest
216237 steps :
217238 - name : " Download artifacts"
218- uses : actions/download-artifact@v3
239+ uses : actions/download-artifact@v4
219240
220241 - name : " Display downloaded files"
221242 run : ls -R
0 commit comments