From 5a2c39ae3c9a8a4e63126ef570ee52a598533f6a Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 5 Feb 2024 08:58:43 -0600 Subject: [PATCH] windows paths --- .github/workflows/ci_dbt_core_testing.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_dbt_core_testing.yml b/.github/workflows/ci_dbt_core_testing.yml index 401cd203..031e6123 100644 --- a/.github/workflows/ci_dbt_core_testing.yml +++ b/.github/workflows/ci_dbt_core_testing.yml @@ -237,10 +237,18 @@ jobs: if: runner.os == 'Windows' uses: ./.github/actions/setup-postgres-windows - - name: "Start Virtual Env, Upgrade pip" + - name: "Set up venv (windows)" + run: | + python -m venv env + source env\bin\activate + + - name: "Set up venv (not windows!)" run: | python -m venv env source env/bin/activate + + - name: "Upgrade pip" + run: | python -m pip install --upgrade pip python -m pip --version