feat(pylint): lint 3.10 and 3.9 as well
Some checks reported warnings
Pylint / Pylint (3.10, 3.11.2) (push) Has been cancelled
Pylint / Pylint (3.10, 3.9) (push) Has been cancelled
Pylint / Pylint (3.11, 3.10) (push) Has been cancelled
Pylint / Pylint (3.11, 3.11.2) (push) Has been cancelled
Pylint / Pylint (3.11, 3.9) (push) Has been cancelled
Pylint / Pylint (3.9, 3.10) (push) Has been cancelled
Pylint / Pylint (3.9, 3.11.2) (push) Has been cancelled
Pylint / Pylint (3.9, 3.9) (push) Has been cancelled
Pylint / Pylint (3.10, 3.10) (push) Has been cancelled

This commit is contained in:
Seaswimmer 2023-10-07 19:53:26 -04:00
parent 52647c6133
commit 0fa58eba3c
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -6,15 +6,15 @@ jobs:
runs-on: docker runs-on: docker
strategy: strategy:
matrix: matrix:
python-version: ["3.11.2"] python-version: ["3.11.2", "3.10", "3.9"]
python-cmd: ["3.11"] python-cmd: ["3.11", "3.10", "3.9"]
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
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 ${{ matrix.python-version }} - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}