Skip to content

Commit b75f879

Browse files
committed
Change to user's example.
1 parent 92d457e commit b75f879

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

.github/workflows/ci-pip-install.yaml

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,15 @@ jobs:
1010
metricflow-pip-install-tests:
1111
name: MetricFlow `pip` Install Tests
1212
runs-on: ubuntu-latest
13-
strategy:
14-
matrix:
15-
python-version: ["3.10"]
1613
steps:
14+
- name: Checkout Repo
15+
uses: actions/checkout@v3
1716

18-
- name: Check-out the repo
19-
uses: actions/checkout@v4
20-
21-
- name: Setup Python ${{ matrix.python-version }} Environment
22-
uses: ./.github/actions/setup-python-env
17+
- name: Install Python
18+
uses: actions/setup-python@v4
2319
with:
24-
python-version: "${{ matrix.python-version }}"
20+
python-version: '3.10.9'
21+
cache: 'pip'
2522

26-
- name: Run `pip install dbt-metricflow`
27-
run: >-
28-
pip install dbt-core==1.9.0
29-
dbt-snowflake==1.8.3
30-
sqlfluff-templater-dbt==3.3.1
31-
sqlglot[rs]
32-
elementary-data
33-
dbt-metricflow==0.8.1
23+
- name: Install pip dependencies
24+
run: pip install -r debug_requirements.txt

debug_requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dbt-core == 1.8.7
2+
dbt-snowflake == 1.8.3
3+
sqlfluff-templater-dbt == 3.3.1
4+
sqlglot[rs]
5+
elementary-data

0 commit comments

Comments
 (0)