Skip to content

Commit 5e5a4a4

Browse files
committed
x
1 parent dabd94b commit 5e5a4a4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/_test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,12 @@ jobs:
5252
name: Python ${{ matrix.python-version }}
5353
steps:
5454
- uses: actions/checkout@v4
55-
- name: Test database connection
55+
- name: Install postgresql-client
5656
run: |
57-
# Set up postgresql-client
57+
sudo apt-get update
5858
sudo apt-get install -y postgresql-client
59+
- name: Test database connection
60+
run: |
5961
# Test psql connection
6062
psql -h localhost -p 5432 -U langchain -d langchain_test -c "SELECT 1;"
6163

0 commit comments

Comments
 (0)