File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 47
47
operating-system : ${{ matrix.os }}
48
48
python-version : ${{ matrix.python-version }}
49
49
50
+ docs-style :
51
+ name : Documentation Style Check
52
+ runs-on : ubuntu-latest
53
+ steps :
54
+ - name : PyAnsys documentation style checks
55
+ uses : ansys/actions/doc-style@v6
56
+ with :
57
+ token : ${{ secrets.GITHUB_TOKEN }}
58
+
59
+ docs-build :
60
+ name : Documentation Build
61
+ runs-on : ubuntu-latest
62
+ needs : [docs-style]
63
+ steps :
64
+ - name : Setup headless display
65
+ uses : pyvista/setup-headless-display-action@v2
66
+
67
+ - name : " Run Ansys documentation building action"
68
+ uses : ansys/actions/doc-build@v6
69
+ with :
70
+ add-pdf-html-docs-as-assets : true
71
+
50
72
release :
51
73
name : " Release project"
52
74
if : github.event_name == 'push' && contains(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments