File tree 3 files changed +13
-12
lines changed
examples/tutorial/jupyter/execution/pandas_on_ray/cluster
3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -105,3 +105,15 @@ jobs:
105
105
- run : python scripts/doc_checker.py modin/experimental/core/execution/native/implementations/hdk_on_native/interchange/dataframe_protocol
106
106
- run : python scripts/doc_checker.py modin/experimental/batch/pipeline.py
107
107
- run : python scripts/doc_checker.py modin/logging
108
+
109
+ lint-black-isort :
110
+ name : lint (black and isort)
111
+ runs-on : ubuntu-latest
112
+ steps :
113
+ - uses : actions/checkout@v3
114
+ - uses : ./.github/actions/python-only
115
+ - run : pip install black>=24.1.0 isort>=5.12
116
+ # NOTE: keep the black command here in sync with the pre-commit hook in
117
+ # /contributing/pre-commit
118
+ - run : black --check --diff modin/ asv_bench/benchmarks scripts/doc_checker.py
119
+ - run : isort . --check-only
Original file line number Diff line number Diff line change 26
26
MODIN_GITHUB_CI : true
27
27
28
28
jobs :
29
- lint-black-isort :
30
- name : lint (black and isort)
31
- runs-on : ubuntu-latest
32
- steps :
33
- - uses : actions/checkout@v3
34
- - uses : ./.github/actions/python-only
35
- - run : pip install black>=24.1.0 isort>=5.12
36
- # NOTE: keep the black command here in sync with the pre-commit hook in
37
- # /contributing/pre-commit
38
- - run : black --check --diff modin/ asv_bench/benchmarks scripts/doc_checker.py
39
- - run : isort . --check-only
40
-
41
29
lint-mypy :
42
30
name : lint (mypy)
43
31
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
import time
2
+
2
3
import ray
3
4
4
5
import modin .pandas as pd
You can’t perform that action at this time.
0 commit comments