From cd1b9088400cbb9841b0335c706d5efa7fc0dcf8 Mon Sep 17 00:00:00 2001 From: miroslavpojer Date: Wed, 21 Aug 2024 13:34:03 +0200 Subject: [PATCH] #250 - Update of filename inspection workflow - Used released version of filename-inspector. - Defined row definition of excludes. --- .github/workflows/test_filenames_check.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_filenames_check.yml b/.github/workflows/test_filenames_check.yml index aeaa01d4f..d3e24ee2f 100644 --- a/.github/workflows/test_filenames_check.yml +++ b/.github/workflows/test_filenames_check.yml @@ -31,11 +31,14 @@ 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: 'server/src/test/scala/za/co/absa/atum/server/api/TestData.scala,server/src/test/scala/za/co/absa/atum/server/api/TestTransactorProvider.scala,server/src/test/scala/za/co/absa/atum/server/ConfigProviderTest.scala' + excludes: | + server/src/test/scala/za/co/absa/atum/server/api/TestData.scala, + server/src/test/scala/za/co/absa/atum/server/api/TestTransactorProvider.scala, + server/src/test/scala/za/co/absa/atum/server/ConfigProviderTest.scala verbose-logging: 'false' fail-on-violation: 'true'