We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pip install dbt-metricflow
1 parent c00a1df commit 96b9070Copy full SHA for 96b9070
.github/workflows/ci-pip-install.yaml
@@ -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