fix(pylint): no sir I do not want to run the same task 1000x times
This commit is contained in:
parent
0fa58eba3c
commit
75f14c794a
1 changed files with 2 additions and 3 deletions
|
@ -6,8 +6,7 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.11.2", "3.10", "3.9"]
|
python-version: ["3.11", "3.10", "3.9"]
|
||||||
python-cmd: ["3.11", "3.10", "3.9"]
|
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: catthehacker/ubuntu:act-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -19,7 +18,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install Poetry
|
- 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
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
Loading…
Reference in a new issue