Skip to content

Commit

Permalink
⚙ci: use .log extension in example tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hudsonm62 committed Apr 27, 2024
1 parent afd0d17 commit edf65c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,21 +148,21 @@ jobs:
path1: "${{ env.TEST_DIR }}/directory1"
path2: "${{ env.TEST_DIR }}/directory2"
output_diff: true
log_path: "./some_log1.txt" # on the cwd
log_path: "./some_log1.log" # on the cwd
- name: Normal File Compare
uses: ./
id: file_compare
with:
path1: "${{ env.TEST_DIR }}/m_file1.txt"
path2: "${{ env.TEST_DIR }}/m_file3.txt"
output_diff: true
log_path: "./some_log2.txt" # on the cwd
log_path: "./some_log2.log" # on the cwd

- name: compare logs (arent matching) # because why not
uses: ./
with:
path1: "./some_log1.txt"
path2: "./some_log2.txt"
path1: "./some_log1.log"
path2: "./some_log2.log"
output_diff: true
error_same: true

Expand Down

0 comments on commit edf65c2

Please sign in to comment.