Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/linters/.checkov.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
skip-check:
- CKV2_GHA_1
3 changes: 3 additions & 0 deletions .github/linters/.jscpd.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"threshold": 5
}
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,21 @@ jobs:
name: Lint
runs-on: ubuntu-24.04

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed for super-linter

- name: Lint codebase
uses: github/super-linter@v5
uses: super-linter/super-linter/slim@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2 # v7.3.0
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
IGNORE_GITIGNORED_FILES: true
FILTER_REGEX_INCLUDE: .*src/.*, .*test/.*
FILTER_REGEX_EXCLUDE: .*package-info.java
Expand Down