We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e393105 commit 1dd5a40Copy full SHA for 1dd5a40
.github/workflows/test.yml
@@ -106,6 +106,7 @@ jobs:
106
run: |
107
~/.local/state/nix/profiles/pianotrans/bin/pianotrans --cli test/cut_liszt.opus test/cut_liszt.opus test/cut_liszt.opus | tee /tmp/transcribe.log
108
time=$(awk 'BEGIN {ORS=" "} /Transcribe time:/ {print $3}' /tmp/transcribe.log)
109
- echo "::notice::Transcribe time: $time"
110
- test -e test/cut_liszt.opus.mid
+ file=test/cut_liszt.opus.mid
+ echo "::notice::Time/Size/MD5: $time / $(stat -c %s "$file") / $(md5sum "$file" | cut -d ' ' -f 1)"
111
+ test -e "$file"
112
- uses: azuwis/actions/nix/post@main
0 commit comments