From 2b2938a9257d03652dbf9ee8b02b292f826cf4e7 Mon Sep 17 00:00:00 2001 From: EvieePy Date: Fri, 9 Feb 2024 11:34:44 +1000 Subject: [PATCH] Use ruff in actions. --- .github/workflows/coverage_and_lint.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/coverage_and_lint.yml b/.github/workflows/coverage_and_lint.yml index a8f73311..9aacfb64 100644 --- a/.github/workflows/coverage_and_lint.yml +++ b/.github/workflows/coverage_and_lint.yml @@ -37,15 +37,6 @@ jobs: no-comments: ${{ matrix.python-version != '3.x' }} warnings: false - - name: Lint + - name: Lint with Ruff if: ${{ always() && steps.install-deps.outcome == 'success' }} - uses: github/super-linter/slim@v4 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - DEFAULT_BRANCH: dev/3.0 - VALIDATE_ALL_CODEBASE: false - VALIDATE_PYTHON_BLACK: true - VALIDATE_PYTHON_ISORT: true - LINTER_RULES_PATH: / - PYTHON_ISORT_CONFIG_FILE: pyproject.toml - PYTHON_BLACK_CONFIG_FILE: pyproject.toml \ No newline at end of file + uses: chartboost/ruff-action@v1 \ No newline at end of file