Skip to content

Commit

Permalink
Apply release version of filename-inspector (#135)
Browse files Browse the repository at this point in the history
- Used the released version of filename-inspector.
- Defined exact excludes instead of wild card one.
  • Loading branch information
miroslavpojer authored Aug 21, 2024
1 parent 18b2106 commit b8eca19
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test_filenames_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,16 @@ jobs:

- name: Filename Inspector
id: scan-test-files
uses: AbsaOSS/filename-inspector@master
uses: AbsaOSS/filename-inspector@v0.1.0
with:
name-patterns: '*UnitTests.*,*IntegrationTests.*'
paths: '**/src/test/scala/**'
report-format: 'console'
excludes: '**/src/test/scala/za/co/absa/db/fadb/testing/**'
excludes: |
slick/src/test/scala/za/co/absa/db/fadb/testing/classes/OptionalActorSlickConverter.scala,
slick/src/test/scala/za/co/absa/db/fadb/testing/classes/ActorSlickConverter.scala,
slick/src/test/scala/za/co/absa/db/fadb/testing/classes/Actor.scala,
slick/src/test/scala/za/co/absa/db/fadb/testing/classes/SlickTest.scala,
doobie/src/test/scala/za/co/absa/db/fadb/testing/classes/DoobieTest.scala
verbose-logging: 'false'
fail-on-violation: 'true'

0 comments on commit b8eca19

Please sign in to comment.