fix(pylint): no sir I do not want to run the same task 1000x times
Some checks failed
Pylint / Pylint (3.10) (push) Failing after 27s
Pylint / Pylint (3.11) (push) Successful in 49s
Pylint / Pylint (3.9) (push) Failing after 26s

This commit is contained in:
Seaswimmer 2023-10-07 19:54:01 -04:00
parent 0fa58eba3c
commit 75f14c794a
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -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"