Skip to content

Update i18n-check.yml #144

Update i18n-check.yml

Update i18n-check.yml #144

Workflow file for this run

name: quneiform
on: [push]
jobs:
build:
name: quneiform
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install quneiform
run: |
git clone https://github.com/Blake-Madden/quneiform.git --recurse-submodules
cd quneiform
cmake ./
make -j4
cd ..
- name: analyze
run: |
# Just checking file format here
./quneiform/bin/quneiform ./ --ignore=quneiform,tests -q -v --disable=notL10NAvailable -o i18nresults.txt
- name: review results
run: |
REPORTFILE=./i18nresults.txt
WARNINGSFILE=./warnings.txt
if test -f "$REPORTFILE"; then
cat "$REPORTFILE" > "$WARNINGSFILE"
# are there any warnings?
if grep -qP '\[[a-zA-Z0-9]+\]' "$WARNINGSFILE"; then
# print the remaining warnings
echo Warnings detected:
echo ==================
cat "$WARNINGSFILE" | grep -P '\[[a-zA-Z0-9]+\]'
# fail the job
exit 1
else
echo No issues detected
fi
else
echo "$REPORTFILE" not found
fi