File tree 1 file changed +23
-2
lines changed
1 file changed +23
-2
lines changed Original file line number Diff line number Diff line change 50
50
sccache : ' true'
51
51
container : ' off'
52
52
working-directory : ./python
53
- args : --extras devel,docs
53
+ args : --extras devel
54
54
55
55
- name : Run lints
56
56
run : |
64
64
source .venv/bin/activate
65
65
pytest
66
66
67
+ docs :
68
+ runs-on : ubuntu-latest
69
+ steps :
70
+ - uses : actions/checkout@v4
71
+
72
+ - name : Setup Python
73
+ uses : actions/setup-python@v5
74
+ with :
75
+ python-version : 3.13
76
+
77
+ - name : Create virtualenv
78
+ run : |
79
+ python3 -m venv .venv
80
+
81
+ - uses : PyO3/maturin-action@v1
82
+ with :
83
+ command : develop
84
+ sccache : ' true'
85
+ container : ' off'
86
+ working-directory : ./python
87
+ args : --extras docs
88
+
67
89
- name : Build docs
68
- if : ${{ matrix.python-version == '3.13' }}
69
90
run : |
70
91
source .venv/bin/activate
71
92
sphinx-build -M html docs/source/ docs/build/
You can’t perform that action at this time.
0 commit comments