Skip to content

Commit dccd7b6

Browse files
committed
MAINT: Rename CI job
We are no longer using Flake8, instead we are using Ruff.
1 parent 1addcbe commit dccd7b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
poetry env use ${{ matrix.python-version }}
4343
poetry install --with=lint
4444
45-
- name: Lint with flake8
45+
- name: Lint with Ruff
4646
run: |
4747
set -euo pipefail
4848
# Tell us what version we are using
4949
poetry run ruff version
5050
# Check the source file, ignore type annotations (ANN) for now.
51-
poetry run ruff check numpy_financial/ --ignore F403,Q000,PLR0913,ERA001,TRY003,EM101,EM102,RET505,D203,D213,ANN --select ALL
51+
poetry run ruff check numpy_financial/ --ignore F403,Q000,PLR0913,ERA001,TRY003,EM101,EM102,RET505,D203,D213,ANN --select ALL

0 commit comments

Comments
 (0)