From 75f14c794aab378d36d28eb4f4f7c2c26f3ecbb2 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 7 Oct 2023 19:54:01 -0400 Subject: [PATCH] fix(pylint): no sir I do not want to run the same task 1000x times --- .forgejo/workflows/pylint.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 52f87e7..b232ebe 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -6,8 +6,7 @@ jobs: runs-on: docker strategy: matrix: - python-version: ["3.11.2", "3.10", "3.9"] - python-cmd: ["3.11", "3.10", "3.9"] + python-version: ["3.11", "3.10", "3.9"] container: catthehacker/ubuntu:act-latest steps: - name: Checkout @@ -19,7 +18,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install Poetry - run: curl -sSL https://url.seaswimmer.cc/poetry | python${{ matrix.python-cmd }} - + run: curl -sSL https://url.seaswimmer.cc/poetry | python${{ matrix.python-version }} - - name: Install dependencies run: | export PATH="$HOME/.local/bin:$PATH"