Skip to content

Commit

Permalink
ruff exit non zero on fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Nov 21, 2023
1 parent 61adbc3 commit a1a38ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,7 @@ jobs:
run: python -m pip install --upgrade mypy typing-extensions ruff
- name: run mypy
run: cd spec/API_specification && mypy dataframe_api && mypy examples
- name: run ruff
run: cd spec/API_specification && ruff format dataframe_api examples && ruff dataframe_api examples
- name: run ruff format
run: cd spec/API_specification && ruff format dataframe_api examples --diff
- name: run ruff check
run: cd spec/API_specification && ruff check dataframe_api examples --no-fix

0 comments on commit a1a38ee

Please sign in to comment.