From 3c6a45776f5fedaab4ee1343d1e2850263105c8c Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Sat, 27 Jan 2024 15:16:48 -0500 Subject: [PATCH] setup python before postgres --- .github/workflows/integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index cf25b1c1..ac047f41 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -30,14 +30,14 @@ jobs: - name: Check out repository uses: actions/checkout@v3 - - name: Set up postgres - uses: ./.github/actions/setup-postgres-linux - - name: Setup `hatch` uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@config/release with: python-version: ${{ matrix.python-version }} + - name: Set up postgres + uses: ./.github/actions/setup-postgres-linux + - name: Run integration tests run: hatch run integration-tests:all shell: bash