We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ede401 commit a6b52e0Copy full SHA for a6b52e0
.github/workflows/miss_hit.yml
@@ -28,12 +28,16 @@ jobs:
28
- name: Install dependencies
29
run: |
30
python -m pip install --upgrade pip setuptools
31
- pip3 install install miss_hit
+ pip3 install -r requirements.txt
32
33
- - name: Miss_hit code quality
+ - name: MISS_HIT Code style
34
35
- mh_metric . --ci
+ mh_style --process-slx
36
37
- - name: Miss_hit code style
+ - name: MISS_HIT Metrics
38
39
- mh_style .
+ mh_metric --ci
40
+
41
+ - name: MISS_HIT Bug finder
42
+ run: |
43
+ mh_lint
docs/requirements.txt renamed to requirements.txt
@@ -2,3 +2,4 @@ Sphinx
2
sphinxcontrib-matlabdomain
3
sphinxcontrib-napoleon
4
sphinx_rtd_theme
5
+miss_hit==0.9.15
0 commit comments