Skip to content

Commit

Permalink
constrain ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Nov 13, 2023
1 parent 40f3098 commit 96c10c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: python3 -m pip install ".[dev]"

- name: Check style
run: python3 -m ruff check src/ tests/ && python3 -m ruff format --check src/ tests/
run: python3 -m ruff check . && python3 -m ruff format --check .

test:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ extend-exclude = "^/docs/source/conf.py"

[tool.ruff]
src = ["src"]
exclude = ["docs/conf.py"]
# pycodestyle (E, W)
# Pyflakes (F)
# flake8-annotations (ANN)
Expand Down

0 comments on commit 96c10c0

Please sign in to comment.