Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AngryMaciek committed Mar 8, 2024
1 parent e2562b6 commit 07f058a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,12 @@ jobs:
--configfile tests/test1/config-Ubuntu.yml
--environment local
- name: Check md5 (test1) (Ubuntu)
- name: Check outfiles (test1) (Ubuntu)
shell: bash -l {0}
working-directory: ./tests/test1
run: md5sum -c output-Ubuntu.md5
run: >
md5sum -c output-Ubuntu.md5
[ -e tests/test1/output/analyses/00000000/muller.txt ]
- name: Cleanup (test1)
shell: bash -l {0}
Expand All @@ -111,10 +113,14 @@ jobs:
--environment local
--cores 4
- name: Check md5 (test2) (Ubuntu)
- name: Check outfiles (test2) (Ubuntu)
shell: bash -l {0}
working-directory: ./tests/test2
run: md5sum -c output-Ubuntu.md5
run: |
md5sum -c output-Ubuntu.md5;
for dir in $(find tests/test2/output/analyses -type d); do
[ -e "$dir/muller.txt" ]
done
- name: Cleanup (test2)
shell: bash -l {0}
Expand Down

0 comments on commit 07f058a

Please sign in to comment.