Skip to content

Commit 96b9070

Browse files
committed
Add workflow to check pip install dbt-metricflow.
1 parent c00a1df commit 96b9070

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Check installing currently published `dbt-metricflow` using `pip`
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- reopened
7+
- synchronize
8+
jobs:
9+
10+
metricflow-pip-install-tests:
11+
name: MetricFlow `pip` install tests
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
python-version: [ "3.9", "3.12" ]
16+
steps:
17+
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
23+
with:
24+
python-version: "${{ matrix.python-version }}"
25+
26+
- name: Run `pip install dbt-metricflow`
27+
run: "pip install dbt-metricflow"

0 commit comments

Comments
 (0)