We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ff3e7f commit a039250Copy full SHA for a039250
.github/workflows/linter.yml
@@ -30,9 +30,15 @@ jobs:
30
name: SuperLinter Check
31
runs-on: ubuntu-latest
32
steps:
33
- - uses: actions/checkout@v3
+ - name: Checkout Code
34
+ uses: actions/checkout@v3
35
+ with:
36
+ # Full git history is needed to get a proper list of changed files within `super-linter`
37
+ fetch-depth: 0
38
- name: SuperLinter
39
uses: github/super-linter@v4
40
env:
- VALIDATE_PYTHON_FLAKE8: true
41
+ DEFAULT_BRANCH: main
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43
+ VALIDATE_ALL_CODEBASE: false
44
+ VALIDATE_PYTHON_FLAKE8: true
0 commit comments