From 57141ea4a3c62371f44ed864f1be75f007f99cd0 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 29 Oct 2024 15:48:53 -0400 Subject: [PATCH] fix args --- .../.github/workflows/checks.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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