File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Container image that runs your code
2
- FROM ricardobchaves6/python-lint-image:1.1 .0
2
+ FROM ricardobchaves6/python-lint-image:1.2 .0
3
3
4
4
# Copies your code file from your action repository to the filesystem path `/` of the container
5
5
COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ Basic:
22
22
``` yml
23
23
steps :
24
24
- uses : actions/checkout@v1
25
- - uses : ricardochaves/python-lint@v1.1 .0
25
+ - uses : ricardochaves/python-lint@v1.2 .0
26
26
` ` `
27
27
28
28
Options:
29
29
30
30
` ` ` yml
31
31
steps :
32
32
- uses : actions/checkout@v1
33
- - uses : ricardochaves/python-lint@v1.1 .0
33
+ - uses : ricardochaves/python-lint@v1.2 .0
34
34
with :
35
35
python-root-list : " python_alelo tests"
36
36
use-pylint : false
@@ -60,7 +60,7 @@ black --check $(extra-black-options) $(python-root-list)
60
60
61
61
mypy $(extra-mypy-options) $(python-root-list)"
62
62
63
- isort -rc $(extra-isort-options) $(python-root-list) -c --diff
63
+ isort $(extra-isort-options) $(python-root-list) -c --diff
64
64
```
65
65
66
66
## Versions used
Original file line number Diff line number Diff line change 99
99
100
100
if [ " $7 " = true ] ; then
101
101
102
- echo Running: isort -rc ${13} $1 -c --diff
102
+ echo Running: isort ${13} $1 -c --diff
103
103
104
- isort -rc ${13} $1 -c --diff
104
+ isort ${13} $1 -c --diff
105
105
exit_code=$?
106
106
107
107
if [ " $exit_code " = " 0" ]; then
You can’t perform that action at this time.
0 commit comments