Skip to content

Commit

Permalink
fix path, add windows conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Feb 5, 2024
1 parent 5a2c39a commit 2e53db1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci_dbt_core_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2e53db1

Please sign in to comment.