Skip to content

Commit

Permalink
Create .CodeQL.yml (#5084)
Browse files Browse the repository at this point in the history
Create file to exclude test and report folder from CodeQL scanning.
  • Loading branch information
marekzmyslowski authored Jan 8, 2025
1 parent d5cf2a9 commit 0fd0ef6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .CodeQL.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
path_classifiers:
test:
# Note: use only forward slash / as a path separator.
# * Matches any sequence of characters except a forward slash.
# ** Matches any sequence of characters, including a forward slash.
# This wildcard must either be surrounded by forward slash symbols, or used as the first segment of a path.
# It matches zero or more whole directory segments. There is no need to use a wildcard at the end of a directory path because all sub-directories are automatically matched.
# That is, /anything/ matches the anything directory and all its subdirectories.
# Always enclose the expression in double quotes if it includes *.
- src/Test

# The default behavior is to tag all files created during the
# build as `generated`. Results are hidden for generated code. You can tag
# further files as being generated by adding them to the `generated` section.
generated:
- _reports

0 comments on commit 0fd0ef6

Please sign in to comment.