diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml new file mode 100644 index 0000000..c05c231 --- /dev/null +++ b/.github/workflows/spellcheck.yaml @@ -0,0 +1,19 @@ +name: spellcheck + +on: + pull_request: + branches: [main] + +permissions: + contents: read + +jobs: + spellcheck: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: streetsidesoftware/cspell-action@v7 + with: + config: .vscode/cspell.json diff --git a/.vscode/cspell.json b/.vscode/cspell.json new file mode 100644 index 0000000..4a0a104 --- /dev/null +++ b/.vscode/cspell.json @@ -0,0 +1,64 @@ +{ + // Version of the setting file. Always 0.2 + "version": "0.2", + // language - current active spelling language + "language": "en", + // words - list of words to be always considered correct + "words": [ + "CCLA", + "CODEOWNER", + "CONFIGPATH", + "ICLA", + "loadx", + "myhost", + "mysenzproj", + "RESOURCEPATH", + "Senzing", + "SUPPORTPATH", + "schemaname", + "configparser", + "cfgp", + "optionxform", + "shuf", + "terashuf", + "unresolve", + "Rotorville", + "redoer", + "Retryable", + "pylint", + "stackoverflow", + "pydevproject", + "analysing", + "shellcheck", + "fstring", + "simplifiable", + "senzingapi", + "ipython", + "virtualenv", + "venv", + "rootfs", + "PYTHONPATH", + "PYTHONUNBUFFERED", + "toplevel", + "alnum", + "watchlist", + "Addx", + "Truthset", + "srccode", + "Dlalas", + "MDMPER", + "Rotchester", + "Makio", + "Yamanaka", + "AUNA", + "Xlas", + "HAUPTMAN" + ], + "ignorePaths": [ + ".git/**", + ".gitignore", + "Resources/License/**", + "Resources/Data/**", + "Resources/Configs/**" + ] +} diff --git a/README.md b/README.md index 0be52fa..5d49d34 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ When used with a container, the JSON configuration is relative to the paths with ✏️You only need to modify the `CONNECTION` string to point to your Senzing database. -### Usage for Dccker usage +### Usage for Docker usage 1. Clone this repository 1. Export the engine configuration environment variable diff --git a/rootfs/app/healthcheck.sh b/rootfs/app/healthcheck.sh index 898a02b..23e2985 100755 --- a/rootfs/app/healthcheck.sh +++ b/rootfs/app/healthcheck.sh @@ -7,6 +7,6 @@ NOT_OK=1 # Tests. -echo "Doing healthtest." +echo "Doing health test." exit ${OK}