Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dargones committed Jul 29, 2024
1 parent 0c05ff0 commit b72195f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ jobs:
- name: Test on Windows
if: matrix.os == 'windows-latest'
run: |
fc.exe result.tsv .github\workflows\exampleExpectedResult.tsv
(Get-Content result.tsv) -replace '\\', '/' | Set-Content result_normalized.tsv
(Get-Content .github\workflows\exampleExpectedResult.tsv) -replace '\\', '/' | Set-Content exampleExpectedResult_normalized.tsv
(Get-Content result_normalized.tsv) -replace '^\s+|\s+$', '' | Sort-Object | Set-Content result_sorted.tsv
(Get-Content exampleExpectedResult_normalized.tsv) -replace '^\s+|\s+$', '' | Sort-Object | Set-Content exampleExpectedResult_sorted.tsv
fc.exe result_sorted.tsv exampleExpectedResult_sorted.tsv

0 comments on commit b72195f

Please sign in to comment.