Skip to content

Commit

Permalink
fix: Fixed test action
Browse files Browse the repository at this point in the history
  • Loading branch information
kforeverisback committed Dec 16, 2024
1 parent 44a369b commit d786bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
directory: ./test-files
line_ending_type: 'LF'
include_regex: '.*CAP$'
exclude_regex: '.*(EXCLUDE|exclude).*'
exclude_regex: '.*EXCLUDE.*'
- name: Check CRLF files with include+exclude regex
uses: ./ # Uses an action in the root directory
id: crlf_inc_exc_regex_check
Expand All @@ -67,7 +67,7 @@ jobs:
directory: ./test-files
line_ending_type: 'CRLF'
include_regex: '.*CAP$'
exclude_regex: '.*(EXCLUDE|exclude).*'
exclude_regex: '.*EXCLUDE.*'
- name: Check CRLF files with exclude regex
uses: ./ # Uses an action in the root directory
id: crlf_exc_regex_check
Expand Down

0 comments on commit d786bd0

Please sign in to comment.