Skip to content

Commit

Permalink
using string interpoloation to gather correct pointer for dbt-core te…
Browse files Browse the repository at this point in the history
…sts against release branches
  • Loading branch information
McKnight-42 committed Mar 11, 2022
1 parent 4b81b0b commit 4b7b12f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ jobs:
pip --version
tox --version
- name: Install dbt-core latest
- name: Install dbt-core from branch ${{ github.event.pull_request.base.ref }}
run: |
pip install "git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core"
pip install "git+https://github.com/dbt-labs/dbt-core.git@${{ github.event.pull_request.base.ref }}#egg=dbt-core&subdirectory=core"
- name: Install dbt-postgres latest
- name: Install dbt-postgres from ${{ github.event.pull_request.base.ref }}
run: |
pip install "git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-postgres&subdirectory=plugins/postgres"
pip install "git+https://github.com/dbt-labs/dbt-core.git@${{ github.event.pull_request.base.ref }}#egg=dbt-postgres&subdirectory=plugins/postgres"
- name: Run tox
run: tox
Expand Down

0 comments on commit 4b7b12f

Please sign in to comment.