diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c2dda9d..8569d0e 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,17 +7,16 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.10" ] + python-version: [ "3.11" ] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + cache: 'poetry' - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install poetry poetry install poetry add pylint - name: Analysing the code with pylint