diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml index 50e79f4..d359cc2 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -9,5 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Check spelling - uses: codespell-project/actions-codespell@v2 \ No newline at end of file + - name: Check spelling in specific files + uses: codespell-project/actions-codespell@v2 + with: + check_filenames: true + only_warn: false + path: "**/*.{md, py}" \ No newline at end of file