From 2e53db103d8c9bfee4777e42debaf7f4179de118 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 5 Feb 2024 09:03:07 -0600 Subject: [PATCH] fix path, add windows conditional --- .github/workflows/ci_dbt_core_testing.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci_dbt_core_testing.yml b/.github/workflows/ci_dbt_core_testing.yml index 031e6123..9e8d8e95 100644 --- a/.github/workflows/ci_dbt_core_testing.yml +++ b/.github/workflows/ci_dbt_core_testing.yml @@ -238,11 +238,13 @@ jobs: uses: ./.github/actions/setup-postgres-windows - name: "Set up venv (windows)" + if: runner.os == 'Windows' run: | python -m venv env source env\bin\activate - name: "Set up venv (not windows!)" + if: runner.os != 'Windows' run: | python -m venv env source env/bin/activate