Skip to content

Commit

Permalink
πŸ’š remove quotes in ci cond
Browse files Browse the repository at this point in the history
  • Loading branch information
z3z1ma committed Nov 6, 2022
1 parent a19f9b5 commit ee96611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
with:
python-version: "3.10"
- name: Install dbt ${{ matrix.dbt-version }}
if: matrix.dbt-version != "1.0"
if: matrix.dbt-version != 1.0
run: pip install . dbt-core==${{ matrix.dbt-version }} pytest
- name: Install dbt ${{ matrix.dbt-version }} (with Markupsafe pin)
if: matrix.dbt-version == "1.0"
if: matrix.dbt-version == 1.0
run: pip install . dbt-core==${{ matrix.dbt-version }} pytest markupsafe==2.0.1
- name: Run Tests
run: pytest

0 comments on commit ee96611

Please sign in to comment.