Skip to content

Commit 0f24a90

Browse files
authored
Merge pull request #63 from scikit-learn-contrib/add-flake8-ci
Add flake8 in CI
2 parents e2caa1c + 43c6756 commit 0f24a90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
python-version: ${{ matrix.python-version }}
4040
channels: defaults, conda-forge
4141
- name: Install dependencies
42-
run: conda install codecov mypy numpy=${{ matrix.numpy-version }} scikit-learn pandas pytest-cov typed-ast
42+
run: conda install codecov flake8 mypy numpy=${{ matrix.numpy-version }} scikit-learn pandas pytest-cov typed-ast
43+
- name: Check linting
44+
run: flake8 . --exclude=doc
4345
- name: Check static typing
4446
run: mypy mapie examples --strict
4547
- name: Test with pytest

0 commit comments

Comments
 (0)