Skip to content

Commit

Permalink
Use ruff in CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
analog-cbarber authored Jan 7, 2024
1 parent fabc4b7 commit bf8c1a3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,21 @@ jobs:
- name: Dev install whl2conda
run: |
conda run -n whl2conda-dev pip install -e . --no-deps --no-build-isolation
- name: ruff
run: |
make ruff
- name: pylint
if: success() || failure()
run: |
make pylint
- name: mypy
if: success() || failure()
run: |
make mypy
- name: check black formatting
- name: check formatting
if: success() || failure()
run: |
make black-check
make check-format
- name: Test with pytest
if: success() || failure()
run: |
Expand Down

0 comments on commit bf8c1a3

Please sign in to comment.