Browse Source

Improve the QMK Lint workflow (#10909)

* properly set the exit_code

* handle the case where exit_code is greater than 255
pull/10954/head 0.10.51
Zach White 3 years ago
committed by GitHub
parent
commit
683ba8b8d4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      .github/workflows/lint.yml

+ 4
- 0
.github/workflows/lint.yml View File

@ -46,6 +46,10 @@ jobs:
echo "linting ${KB}"
qmk lint --keyboard ${KB} && qmk info -l --keyboard ${KB}
exit_code=$(($exit_code + $?))
fi
done
if [[ $exit_code -gt 255 ]]; then
exit 255
fi
exit $exit_code

Loading…
Cancel
Save