diff --git a/python/{{cookiecutter.project_slug}}/.github/workflows/checks.yaml b/python/{{cookiecutter.project_slug}}/.github/workflows/checks.yaml index 4dd2c6f..72f3c58 100644 --- a/python/{{cookiecutter.project_slug}}/.github/workflows/checks.yaml +++ b/python/{{cookiecutter.project_slug}}/.github/workflows/checks.yaml @@ -45,11 +45,11 @@ jobs: matrix: hook: - name: "Check EOF format" - args: "end-of-file-fixer --all-files" + args: "end-of-file-fixer" - name: "Check trailing whitespace" - args: "trailing-whitespace --all-files" + args: "trailing-whitespace" - name: "Check line ending format" - args: "mixed-line-ending --fix=lf --all-files" + args: "mixed-line-ending" steps: - uses: actions/checkout@v4