From b0a430051e3b417eb0829e4f542ee5e247bc60bd Mon Sep 17 00:00:00 2001 From: Alexander Graf <17130992+aandergr@users.noreply.github.com> Date: Thu, 18 Jun 2020 08:33:25 +0200 Subject: [PATCH] Restrict GH Action lint workflow on Python 3.8 Now that Travis-CI status reporting works again, there is no need to run the tests twice. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1826285..1765da7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.8] steps: - name: Checkout Instaloader Repository uses: actions/checkout@v2