Skip to content

Commit

Permalink
Correcting the paths in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
silverdaz committed Dec 10, 2024
1 parent 13f56a7 commit de8f176
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
- name: Test 1
run: diff example/mnt/crypt4gh/cleartext <(C4GH_PASSPHRASE=hello crypt4gh decrypt --sk example/example.seckey < example/mnt/crypt4gh/encrypted 2>/dev/null)
- name: Test 2
run: diff example/subdir/file1.txt <(cat example/prepend.txt example/example.txt)
run: diff example/mnt/subdir/file1.txt <(cat example/prepend.txt example/example.txt)
- name: Test 3
run: diff example/subdir/file2.txt <(cat example/example.txt example/append.txt)
run: diff example/mnt/subdir/file2.txt <(cat example/example.txt example/append.txt)
- name: Test 4
run: diff example/extra/footer.txt example/append.txt
run: diff example/mnt/extra/footer.txt example/append.txt
- name: Test 5
run: diff example/extra/header.txt example/prepend.txt
run: diff example/mnt/extra/header.txt example/prepend.txt
- name: Test 6
run: diff example/slim.txt example/example.txt
run: diff example/mnt/slim.txt example/example.txt
- name: Tear down
run: make -C example down

0 comments on commit de8f176

Please sign in to comment.