Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,20 @@ runs:
${GITHUB_ACTION_PATH}/BiocCheck.R \
${BIOC_OPTIONS} ${{ inputs.path }} 2>&1 | \
tee result.txt || echo
grep "ERROR:" result.txt > bioccheck-errors
grep "NOTE:" result.txt > bioccheck-notes
grep "WARNING:" result.txt > bioccheck-warnings
if grep "ERROR:" result.txt
then
grep "ERROR:" result.txt > bioccheck-errors
else
touch bioccheck-errors
fi
if grep "NOTE:" result.txt
then
grep "NOTE:" result.txt > bioccheck-notes
fi
if grep "WARNING:" result.txt
then
grep "WARNING:" result.txt > bioccheck-warnings
fi
echo "🔬 ------------------------------------------- 🔬"
shell: bash

Expand Down