From f3b985fe7b4c42f27693d1c6b9159c598ea44bc7 Mon Sep 17 00:00:00 2001 From: Derekkarungani Date: Sat, 11 Jan 2025 17:23:42 -0600 Subject: [PATCH] Update ci-checks.yml --- .github/workflows/ci-checks.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-checks.yml b/.github/workflows/ci-checks.yml index 75d26d3a5..2e3541967 100644 --- a/.github/workflows/ci-checks.yml +++ b/.github/workflows/ci-checks.yml @@ -28,12 +28,13 @@ jobs: args: "format --check" py_linting: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - # passing ruff linting is required - - name: Python - Check Linting - ruff - uses: astral-sh/ruff-action@v1 + runs-on: ubuntu-latest + steps: + # ... other steps + - name: Python - Check Linting - ruff + uses: astral-sh/ruff-action@v1 + with: + args: solutions/get_unique_values.py solutions/tests/test_get_unique_values.py # passing pylint is not required - discuss errors in code review # adapted from https://github.com/davidslusser/actions_python_pylint/tree/main