Skip to content

#211: Release notes entry enforcement #1

#211: Release notes entry enforcement

#211: Release notes entry enforcement #1

name: Test Filenames Check
on:
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
jobs:
test_filenames_check:
name: Test Filenames Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Filename Inspector
id: scan-test-files
uses: AbsaOSS/[email protected]
with:
name_patterns: '*UnitTest.*,*IntegrationTest.*'
paths: '**/src/test/scala/**'
excludes: 'src/exclude_dir/*.py,tests/exclude_file.py'
report_format: 'console'
verbose_logging: 'false'
fail_on_violation: 'true'