From bfa3fbce2674ecb90a50707101f54603977080ff Mon Sep 17 00:00:00 2001 From: Chris Manteuffel Date: Wed, 15 Jan 2025 12:49:29 -0700 Subject: [PATCH] Fix pylint (#84) --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 959924e..382604c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,10 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: "3.10" - run: pip install --upgrade pip setuptools - run: pip install . -r requirements-dev.txt - run: git ls-files '*.py' | xargs pylint --output-format=text -sn