File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
uses : actions/setup-python@v5
16
16
with :
17
17
python-version : " 3.12"
18
- - name : Install dependencies
19
- run : pip install hatch
18
+ - name : Install hatch
19
+ uses : pypa/ hatch@install
20
20
- name : Lint documentation
21
- run : hatch run lint: docs
21
+ run : hatch run docs:check
22
22
23
23
lint-style :
24
24
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 2
2
dependencies = [
3
3
" freezegun==1.4.*" ,
4
4
]
5
- features = [
6
- " pydantic" ,
7
- ]
5
+ features = [" pydantic" ]
8
6
9
7
[envs .hatch-static-analysis ]
10
8
config-path = " .ruff_defaults.toml"
11
9
12
10
[envs .types ]
13
11
extra-dependencies = [
14
12
" mypy==1.10.*" ,
13
+ " pytest==8.2.*" ,
15
14
]
15
+ features = [" pydantic" ]
16
16
scripts = { check = " mypy --install-types --non-interactive {args:schwifty tests}" }
17
17
18
18
[envs .docs ]
You can’t perform that action at this time.
0 commit comments