File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,22 @@ jobs:
18
18
with :
19
19
python-version : " 3.10"
20
20
21
- - name : Check formatting with Ruff
21
+ - name : Lint with Ruff
22
22
uses : astral-sh/ruff-action@v3
23
23
with :
24
- args : format -- check --diff --exclude docs,tests
24
+ args : check --exclude docs,tests
25
25
26
- - name : Lint with Ruff
26
+ - name : Check formatting with Ruff
27
27
uses : astral-sh/ruff-action@v3
28
28
with :
29
- args : check --exclude docs,tests
29
+ args : format -- check --diff --exclude docs,tests
30
30
31
31
- name : Install package and its dependencies
32
32
run : pip install --editable .[dev,idxml]
33
33
34
+ - name : Static type checking with mypy
35
+ run : mypy
36
+
34
37
- name : Test with pytest and codecov
35
38
run : |
36
39
pytest --cov=psm_utils --cov-report=xml tests/
You can’t perform that action at this time.
0 commit comments