From 8fd21764421d6b5096b74657d922172ce6c179e1 Mon Sep 17 00:00:00 2001 From: tlento Date: Fri, 15 Dec 2023 19:41:35 -0800 Subject: [PATCH] CI test configuration for Trino --- .../workflows/ci-metricflow-unit-tests.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci-metricflow-unit-tests.yaml b/.github/workflows/ci-metricflow-unit-tests.yaml index 34291067f3..d8c7012c86 100644 --- a/.github/workflows/ci-metricflow-unit-tests.yaml +++ b/.github/workflows/ci-metricflow-unit-tests.yaml @@ -53,6 +53,24 @@ jobs: python-version: "3.11" make-target: "test-postgresql" + metricflow-unit-tests-trino: + name: MetricFlow Tests (Trino) + runs-on: ubuntu-latest + services: + trino: + image: trinodb/trino + ports: + - 8080:8080 + steps: + - name: Check-out the repo + uses: actions/checkout@v3 + + - name: Test w/ Python 3.11 + uses: ./.github/actions/run-mf-tests + with: + python-version: "3.11" + make-target: "test-trino" + metricflow-unit-tests: name: MetricFlow Unit Tests runs-on: ubuntu-latest