From 1b48fbb1bdf803899a6ff3699004a075003cf9f4 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Tue, 30 Jan 2024 10:42:45 -0500 Subject: [PATCH] try services approach --- .github/workflows/integration-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 06d2abf0..52fc7d02 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -50,17 +50,17 @@ jobs: - name: Check out repository uses: actions/checkout@v4 - - name: Setup `hatch` - uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@main - with: - python-version: ${{ matrix.python-version }} - - name: Setup postgres shell: bash run: psql -d postgres -U postgres -c "select 1" env: PGPASSWORD: postgres + - name: Setup `hatch` + uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@main + with: + python-version: ${{ matrix.python-version }} + - name: Run integration tests run: hatch run integration-tests:all