Skip to content

Commit e1a08ec

Browse files
committed
validate all codebase with super-linter
There were some misterious situations where super-linter was not properly checking the code. Paul mentioned a setup that limits checks to the very last commit only. I expect that VALIDATE_ALL_CODEBASE should address that.
1 parent 2c4b4d5 commit e1a08ec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/linter.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches-ignore:
66
- 'gh-pages'
7+
pull_request:
8+
branches: [main]
79

810
jobs:
911
build:
@@ -17,7 +19,7 @@ jobs:
1719
- name: Lint Code Base
1820
uses: super-linter/super-linter@v4
1921
env:
20-
VALIDATE_ALL_CODEBASE: false
22+
VALIDATE_ALL_CODEBASE: true
2123
VALIDATE_PYTHON_BLACK: false
2224
VALIDATE_PYTHON_ISORT: false
2325
VALIDATE_PYTHON_MYPY: false

0 commit comments

Comments
 (0)