From 4e32ae54391164cde6944b9d3a12d7cc59473092 Mon Sep 17 00:00:00 2001 From: Tomas Hozza Date: Thu, 18 Aug 2022 11:26:41 +0200 Subject: [PATCH] CI: exclude `LICENSE` from spell check Spell check started to freak out on `complies` in the `LICENSE`. Exclude `LICENSE` from spell check until it learns English. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0efab7..5e5f8ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,4 +60,4 @@ jobs: - uses: actions/checkout@v3 - uses: codespell-project/actions-codespell@master with: - skip: ./.git,build + skip: ./.git,build,LICENSE