mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
ceee9d672a
* [CI] Port CI to github actions. * [Doc] Fix doxygen comment block.
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
|