mirror of
https://github.com/lbonn/rofi
synced 2025-03-01 05:37:08 +00:00
24 lines
510 B
YAML
24 lines
510 B
YAML
name: Doxygen Check
|
|
description: Checks for Doxygen warnings
|
|
|
|
inputs:
|
|
logfile:
|
|
description: Path to doxygen logfile
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- id: check
|
|
run: |
|
|
if [[ "$(grep -c warning ${{ inputs.logfile }})" != 0 ]]; then
|
|
echo
|
|
echo Doxygen warnings found:
|
|
grep warning ${{ inputs.logfile }}
|
|
echo
|
|
|
|
exit 1
|
|
fi
|
|
|
|
python2 ./doxy-coverage/doxy-coverage.py builddir/doc/html/xml/
|
|
shell: bash
|