Skip to content

Commit

Permalink
Use ruff for linting instead of pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsolo1 committed Sep 22, 2023
1 parent aed81ab commit ab01ef3
Show file tree
Hide file tree
Showing 23 changed files with 1,849 additions and 296 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/data-pipeline-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Use pip cache
uses: actions/cache@v2
with:
Expand All @@ -29,10 +29,8 @@ jobs:
- name: Install dependencies
run: |
pip install wheel
pip install -r requirements-dev.txt
pip install hail
pip install -r data-pipeline/requirements.txt
- name: Check formatting
run: black --check data-pipeline/src/data_pipeline
- name: Run Pylint
run: pylint --disable=fixme data-pipeline/src/data_pipeline
- name: Run Ruff
run: ruff data-pipeline/src/data_pipeline
Loading

0 comments on commit ab01ef3

Please sign in to comment.