From 85e59c782b6cb55d50420c621f9fea8b198ae488 Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 2 Jul 2021 05:37:36 -0700 Subject: [PATCH] Reduce Arduino Lint compliance level to "specification" Linting the library in "strict" compliance mode fails due to the `name` value exceeding the recommended maximum of 16 characters. It is not possible to change the name, so this is not something that can be fixed. The expected error might mask real problems that cause other rule violations in the future. So the best thing is to reduce the compliance level to "specification" in which the library name length rule violation only results in a warning. --- .github/workflows/check-arduino.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-arduino.yml b/.github/workflows/check-arduino.yml index 5df60fc..0d969f6 100644 --- a/.github/workflows/check-arduino.yml +++ b/.github/workflows/check-arduino.yml @@ -21,7 +21,7 @@ jobs: - name: Arduino Lint uses: arduino/arduino-lint-action@v1 with: - compliance: strict + compliance: specification library-manager: update # Always use this setting for official repositories. Remove for 3rd party projects. official: true