From 7dc36d014dd87d24d23aa73dde2107ca3e2c3a41 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Wed, 28 Jul 2021 11:48:19 -0700 Subject: [PATCH] Checking to see if pip update worked --- .github/workflows/actions-migration.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/actions-migration.yml b/.github/workflows/actions-migration.yml index 788cbac360..fe1fdd0d0d 100644 --- a/.github/workflows/actions-migration.yml +++ b/.github/workflows/actions-migration.yml @@ -59,18 +59,18 @@ jobs: # #TODO: CircleCI save_cache equivalent - # - name: Install Python Dependencies - # run: | - # #Get the virtualenv set up - # rm -rf venv - # python3 -m venv --clear venv - # source venv/bin/activate + - name: Install Python Dependencies + run: | + #Get the virtualenv set up + rm -rf venv + python3 -m venv --clear venv + source venv/bin/activate - # #Update pip, otherwise Github Actions complains - # python3 -m pip install --upgrade pip + #Update pip, otherwise Github Actions complains + python3 -m pip install --upgrade pip - # #Actually install the requirements - # python3 -m pip install -q -r requirements.txt --ignore-installed simplejson + #Actually install the requirements + python3 -m pip install -q -r requirements.txt --ignore-installed simplejson # - name: run validate