Skip to content

Commit e57a60d

Browse files
authored
Merge pull request #3 from weibullguy/chore/update_tool_versions
chore: update tool versions
2 parents af9b421 + ffd3933 commit e57a60d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/all-lints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v1
11-
- uses: weibullguy/python-lint@master
11+
- uses: weibullguy/python-lint-plus@master
1212
with:
1313
python-root-list: "tests"
1414
use-check-manifest: false

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Container image that runs your code
2-
FROM weibullguy/python-lint-image:1.9.0
2+
FROM weibullguy/python-lint-image:1.10.0
33

44
# Copies your code file from your action repository to the filesystem path `/` of the container
55
COPY entrypoint.sh /entrypoint.sh

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ recommended that the tools you use in this action be used in-line with your
3131
editor or IDE and/or as pre-commit hooks. This action just verifies you didn't
3232
forget to do that.
3333

34-
However, you could choose to have fixes applies by each tool. If you do, it's
34+
However, you could choose to have fixes applied by each tool. If you do, it's
3535
recommended that the autoformatters come first, followed by the style checking
3636
tools to verify the autoformatter results. After this, the type checkers and
3737
linters can be run.
@@ -60,7 +60,7 @@ steps:
6060
- uses: actions/checkout@v2
6161
- uses: weibullguy/python-lint-plus@master
6262
with:
63-
python-root-list: "python_alelo tests"
63+
python-root-list: "tests"
6464
use-black: false
6565
use-yapf: false
6666
use-isort: false

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"""Tests for all style checks."""
1+
"""Tests package for python-lint-plus."""

tests/test_python_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ def get_name_len(name: str) -> int:
99

1010

1111
def start():
12-
"Run ... "
12+
"Run ..."
1313
print(get_name_len("Doyle"))
1414
print(uuid.uuid4().hex)

0 commit comments

Comments
 (0)