Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 60fe7b4

Browse files
authoredMay 23, 2021
Add code-spell spelling checks to CI (#8067)
Help find and fix silly spelling errors as they are added to the repo.
1 parent 78a2ed6 commit 60fe7b4

File tree

133 files changed

+273
-260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+273
-260
lines changed
 

‎.github/workflows/pull-request.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,3 +269,18 @@ jobs:
269269
bash ./tests/ci/build_boards.sh
270270
bash ./tests/ci/eboot_test.sh
271271
bash ./tests/ci/pkgrefs_test.sh
272+
273+
274+
# Validate orthography
275+
code-spell:
276+
name: Check spelling
277+
runs-on: ubuntu-latest
278+
steps:
279+
- uses: actions/checkout@v2
280+
with:
281+
submodules: true
282+
- name: Run codespell
283+
uses: codespell-project/actions-codespell@master
284+
with:
285+
skip: ./libraries/ESP8266SdFat,./libraries/LittleFS/lib,./tools/pyserial,./tools/sdk,./tools/esptool,./libraries/SoftwareSerial,./libraries/Ethernet,./github/workflows,./libraries/ESP8266HTTPUpdateServer/examples/SecureBearSSLUpdater/SecureBearSSLUpdater.ino,./libraries/esp8266/examples/RTCUserMemory/RTCUserMemory.ino,./libraries/esp8266/examples/StreamString/StreamString.ino,./libraries/ESP8266WiFi/examples/BearSSL_Validation/BearSSL_Validation.ino,./libraries/ESP8266WiFi/examples/BearSSL_Sessions/BearSSL_Sessions.ino,./libraries/ESP8266WebServer/examples/HelloServerBearSSL/HelloServerBearSSL.ino,./libraries/ESP8266WebServer/examples/HttpHashCredAuth/HttpHashCredAuth.ino,./cores/esp8266/spiffs,./tests/device/test_libc/libm_string.c, ./libraries/Netdump/examples/Netdump/Netdump.ino,./libraries/ESP8266WiFi/examples/BearSSL_Server,./cores/esp8266/LwipIntfDev.h
286+
ignore_words_list: ESP8266,esp8266,esp,dout,DOUT,ser,ans

‎cores/esp8266/CallBackList.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#ifndef __CALLBACKLIST_H__
22
#define __CALLBACKLIST_H__
33

4-
54
/*
6-
CallBackList, An implemention for handling callback execution
5+
CallBackList, An implementation for handling callback execution
76
87
Copyright (c) 2019 Herman Reintke. All rights reserved.
98
This file is part of the esp8266 core for Arduino environment.

0 commit comments

Comments
 (0)
Please sign in to comment.