fix(repo): finally fixed pylint workflow
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 10s

This commit is contained in:
Seaswimmer 2023-09-24 07:54:05 -04:00
parent 792848699b
commit 9d0a0cf0e9
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -7,16 +7,14 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.11.2"] python-version: ["3.11"]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3.6.0 uses: actions/checkout@v3.6.0
with: with:
token: ${{ secrets.COASTALCOMMITSTOKEN}} token: ${{ secrets.COASTALCOMMITSTOKEN}}
- name: Set up Python ${{ matrix.python-version }} - name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 run: apt install python${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip