diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml index 9d737197..9e49c4ae 100644 --- a/.github/actions/setup-postgres-linux/action.yml +++ b/.github/actions/setup-postgres-linux/action.yml @@ -10,7 +10,6 @@ runs: shell: bash - name: Configure the database - # run: sudo -u postgres psql -f setup_test_database.sql - run: ./echo.sh + run: sudo -u postgres psql -f setup_test_database.sql shell: bash working-directory: ./scripts diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 278c8e98..c8b7776a 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -41,16 +41,19 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v4 - with: - persist-credentials: true - name: Setup `hatch` uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@config/release with: python-version: ${{ matrix.python-version }} - - name: Setup postgres - uses: ./.github/actions/setup-postgres-linux + - name: Run empty script + run: ./echo.sh + shell: bash + working-directory: ./scripts + +# - name: Setup postgres +# uses: ./.github/actions/setup-postgres-linux - name: Run integration tests run: hatch run integration-tests:all