File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 26
26
- name : " Run PyAnsys code style checks"
27
27
uses : ansys/actions/code-style@v6
28
28
29
+ smoke-tests :
30
+ name : Build and Smoke tests
31
+ runs-on : ${{ matrix.os }}
32
+ strategy :
33
+ fail-fast : false
34
+ matrix :
35
+ os : [ubuntu-latest, windows-latest, macos-latest]
36
+ python-version : ['3.10', '3.11', '3.12']
37
+ should-release :
38
+ - ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
39
+ exclude :
40
+ - should-release : false
41
+ os : macos-latest
42
+ steps :
43
+ - name : Build wheelhouse and perform smoke test
44
+ uses : ansys/actions/build-wheelhouse@v6
45
+ with :
46
+ library-name : ${{ env.PACKAGE_NAME }}
47
+ operating-system : ${{ matrix.os }}
48
+ python-version : ${{ matrix.python-version }}
49
+
29
50
release :
30
51
name : " Release project"
31
52
if : github.event_name == 'push' && contains(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments