File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,20 +4,20 @@ on: [push, workflow_call]
4
4
5
5
jobs :
6
6
spellcheck :
7
- runs-on : " windows -latest"
7
+ runs-on : " ubuntu -latest"
8
8
steps :
9
9
- uses : actions/checkout@v4
10
10
with :
11
11
fetch-depth : 0
12
- - uses : actions/setup-python @v5
12
+ - uses : actions/setup-uv @v5
13
13
with :
14
14
python-version : " 3.12"
15
15
- name : install requirements
16
- run : pip install -e .[ dev]
16
+ run : uv sync --extra dev
17
17
- name : run pytest
18
- run : python -m pytest
18
+ run : uv run pytest
19
19
- name : run spellcheck
20
- run : sphinx-build -E -a -W --keep-going -b spelling doc _build
20
+ run : uv run sphinx-build -E -a -W --keep-going -b spelling doc _build
21
21
build :
22
22
uses : ISISComputingGroup/reusable-workflows/.github/workflows/sphinx.yml@main
23
23
secrets : inherit
You can’t perform that action at this time.
0 commit comments