diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 0c5c57b..7f8dc56 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -27,8 +27,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -U pylint pip install -r requirements.txt + pip install -U pylint - name: Lint Code run: pylint $(git ls-files '*.py') @@ -49,7 +49,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: read Cached pip + - name: Cache pip uses: actions/cache@v2 with: path: ~/.cache/pip @@ -57,10 +57,5 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Run tests run: pytest .