@@ -44,11 +44,11 @@ jobs:
44
44
runs-on : ${{ matrix.os }}
45
45
46
46
steps :
47
- - uses : actions/checkout@v4
47
+ - uses : actions/checkout@v5
48
48
with :
49
49
fetch-depth : 0 # grab all branches and tags
50
50
- name : Set up Python
51
- uses : actions/setup-python@v5
51
+ uses : actions/setup-python@v6
52
52
with :
53
53
python-version : ${{ matrix.python-version }}
54
54
cache : ' pip'
@@ -86,11 +86,11 @@ jobs:
86
86
- python-version : " 3.11"
87
87
dependency-set : upstream
88
88
steps :
89
- - uses : actions/checkout@v4
89
+ - uses : actions/checkout@v5
90
90
with :
91
91
fetch-depth : 0
92
92
- name : Set up Python
93
- uses : actions/setup-python@v5
93
+ uses : actions/setup-python@v6
94
94
with :
95
95
python-version : ${{ matrix.python-version }}
96
96
cache : ' pip'
@@ -115,11 +115,11 @@ jobs:
115
115
name : doctests
116
116
runs-on : ubuntu-latest
117
117
steps :
118
- - uses : actions/checkout@v4
118
+ - uses : actions/checkout@v5
119
119
with :
120
120
fetch-depth : 0 # required for hatch version discovery, which is needed for numcodecs.zarr3
121
121
- name : Set up Python
122
- uses : actions/setup-python@v5
122
+ uses : actions/setup-python@v6
123
123
with :
124
124
python-version : ' 3.13'
125
125
cache : ' pip'
@@ -129,11 +129,11 @@ jobs:
129
129
pip install hatch
130
130
- name : Set Up Hatch Env
131
131
run : |
132
- hatch env create doctest
133
- hatch env run -e doctest list-env
132
+ hatch env create docs
133
+ hatch env run -e docs list-env
134
134
- name : Run Tests
135
135
run : |
136
- hatch env run --env doctest run
136
+ hatch env run --env docs check
137
137
138
138
test-complete :
139
139
name : Test complete
0 commit comments