Skip to content

Commit

Permalink
fix: add/remove python version
Browse files Browse the repository at this point in the history
  • Loading branch information
thib1984 committed Aug 15, 2023
1 parent 0efcec9 commit eff73d1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/actions/full_test_published/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ runs:
echo '---->ytdlmusic --auto "Rexlambo Stay With Me"'
ytdlmusic --auto "Rexlambo Stay With Me"
echo "---->test if mp3 file exists"
test -f "Rexlambo Stay With Me.mp3"
test -f "Rexlambo Stay With Me_1.mp3"
echo "---->test the mp3 file type"
file -b "Rexlambo Stay With Me.mp3"
file -b "Rexlambo Stay With Me.mp3" | grep "layer III"
file -b "Rexlambo Stay With Me_1.mp3"
file -b "Rexlambo Stay With Me_1.mp3" | grep "layer III"
- name: m4a
shell: bash
run: |
Expand All @@ -55,12 +55,12 @@ runs:
- name: test downloaded files
shell: bash
run: |
echo '---->md5sum "Rexlambo Stay With Me.m4a"'
md5sum "Rexlambo Stay With Me.m4a"
echo '---->md5sum "Rexlambo Stay With Me.m4a"'
md5sum "Rexlambo Stay With Me.m4a"
echo '---->md5sum "Rexlambo Stay With Me.mp3"'
md5sum "Rexlambo Stay With Me.mp3"
echo '---->md5sum "Rexlambo Stay With Me_1.mp3"'
md5sum "Rexlambo Stay With Me_1.mp3"
echo '---->md5sum should be differents because from differents urls'
test "$(md5sum 'Rexlambo Stay With Me.m4a' | cut -d " " -f 1)" != "$(md5sum 'Rexlambo Stay With Me.m4a' | cut -d " " -f 1)"
test "$(md5sum 'Rexlambo Stay With Me.mp3' | cut -d " " -f 1)" != "$(md5sum 'Rexlambo Stay With Me_1.mp3' | cut -d " " -f 1)"
- name: batch
shell: bash
run: |
Expand Down

0 comments on commit eff73d1

Please sign in to comment.