We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ded4d50 commit 91e1d60Copy full SHA for 91e1d60
2 files changed
.githooks/pre-push
@@ -6,5 +6,6 @@ source "${ROOT_DIR}/scripts/helpers"
6
./scripts/check_isort
7
./scripts/check_black
8
./scripts/check_flake8
9
+./scripts/check_pylint
10
11
header "Proceeding with push"
.github/workflows/lint-and-test.yml
@@ -40,3 +40,15 @@ jobs:
40
uses: actions/checkout@v2
41
- name: Check code errors
42
run: ./scripts/check_flake8
43
+
44
+ pylint:
45
+ runs-on: ubuntu-latest
46
+ container:
47
+ image: sergioteula/pytools
48
+ volumes:
49
+ - ${{github.workspace}}:/code
50
+ steps:
51
+ - name: Check out code
52
+ uses: actions/checkout@v2
53
+ - name: Check code errors
54
+ run: ./scripts/check_pylint
0 commit comments