Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/all-lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- uses: actions/checkout@v1
- uses: weibullguy/python-lint@master
- uses: weibullguy/python-lint-plus@master
with:
python-root-list: "tests"
use-check-manifest: false
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Container image that runs your code
FROM weibullguy/python-lint-image:1.9.0
FROM weibullguy/python-lint-image:1.10.0

# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ recommended that the tools you use in this action be used in-line with your
editor or IDE and/or as pre-commit hooks. This action just verifies you didn't
forget to do that.

However, you could choose to have fixes applies by each tool. If you do, it's
However, you could choose to have fixes applied by each tool. If you do, it's
recommended that the autoformatters come first, followed by the style checking
tools to verify the autoformatter results. After this, the type checkers and
linters can be run.
Expand Down Expand Up @@ -60,7 +60,7 @@ steps:
- uses: actions/checkout@v2
- uses: weibullguy/python-lint-plus@master
with:
python-root-list: "python_alelo tests"
python-root-list: "tests"
use-black: false
use-yapf: false
use-isort: false
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Tests for all style checks."""
"""Tests package for python-lint-plus."""
2 changes: 1 addition & 1 deletion tests/test_python_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ def get_name_len(name: str) -> int:


def start():
"Run ... "
"Run ..."
print(get_name_len("Doyle"))
print(uuid.uuid4().hex)