From 185c9d211fc0b926087b971cf6312e95d04b5931 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Wed, 1 Nov 2023 16:16:09 -0700 Subject: [PATCH] Fix workflow --- .github/workflows/db.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/db.yml b/.github/workflows/db.yml index c122b54..dbcdb6e 100644 --- a/.github/workflows/db.yml +++ b/.github/workflows/db.yml @@ -1,4 +1,4 @@ -name: python +name: db on: push: branches: @@ -28,12 +28,12 @@ jobs: with: python-version: 3.11 - name: Install python dependencies - working-directory: ./examples/python + working-directory: ./examples run: | python -m pip install --upgrade pip python -m pip install -r requirements.txt - name: Test python code - working-directory: ./examples/python + working-directory: ./examples env: PG_USER: postgres PG_HOST: localhost