Skip to content

Commit ab01ef3

Browse files
committed
Use ruff for linting instead of pylint
1 parent aed81ab commit ab01ef3

23 files changed

+1849
-296
lines changed

.github/workflows/data-pipeline-ci.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.7
21+
python-version: 3.9
2222
- name: Use pip cache
2323
uses: actions/cache@v2
2424
with:
@@ -29,10 +29,8 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
pip install wheel
32-
pip install -r requirements-dev.txt
33-
pip install hail
3432
pip install -r data-pipeline/requirements.txt
3533
- name: Check formatting
3634
run: black --check data-pipeline/src/data_pipeline
37-
- name: Run Pylint
38-
run: pylint --disable=fixme data-pipeline/src/data_pipeline
35+
- name: Run Ruff
36+
run: ruff data-pipeline/src/data_pipeline

0 commit comments

Comments
 (0)