diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 0076d02..27d14e5 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -15,6 +15,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: make install + run: | + python -m pip install --upgrade pip + pip install poetry + make install - name: Run lint run: make lint