From 3a8cffe3ce732ef9dffca0575b4d464c57dfd0e4 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Sat, 12 Mar 2022 16:19:23 -0800 Subject: [PATCH] Removes duplicated install of pipenv, changes to use pipx as per the official example --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abf7a0ce0..7aebf6ed1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,13 +108,14 @@ jobs: uses: actions/checkout@v2 - name: Install pipenv - run: pip install pipenv + run: pipx install pipenv - name: Set up Python uses: actions/setup-python@v2 with: python-version: "${{ matrix.python-version }}" cache: "pipenv" + cache-dependency-path: 'Pipfile.lock' - name: Install system dependencies run: | @@ -123,7 +124,6 @@ jobs: - name: Install Python dependencies run: | - pip install --upgrade pipenv pipenv install --dev --ignore-pipfile - name: Tests