Skip to content

Commit

Permalink
Test python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arpanda committed Jul 21, 2024
1 parent 1ac6b28 commit 104ed31
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ jobs:
- name: check calls
run: |
md5 < output
if [ "$(md5 < output)" == "cf2496a1f86cc22500825493a27f0d95" ] ; then echo PASS; else echo FAIL; fi
md5sum output
[ "$(md5sum output | awk '{ print $1 }')" == "c7a07af67cb38337f5df012cef304e66" ] && echo PASS || echo FAIL
- name: Run tests
run: |
Expand Down

0 comments on commit 104ed31

Please sign in to comment.