Skip to content

Commit 7031b33

Browse files
committed
feat: postgresql task store
1 parent 433bb5e commit 7031b33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ jobs:
2424
POSTGRES_DB: a2a_test
2525
ports:
2626
- 5432:5432
27-
volumes:
28-
- ${{ github.workspace }}/docker/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
2927

3028
strategy:
3129
matrix:
@@ -39,8 +37,10 @@ jobs:
3937
uses: actions/setup-python@v5
4038
with:
4139
python-version: ${{ matrix.python-version }}
42-
- name: Set postgres test DSN
40+
- name: Set postgres for tests
4341
run: |
42+
sudo apt-get update && sudo apt-get install -y postgresql-client
43+
psql -U postgres -d a2a_test -f ${{ github.workspace }}/docker/postgres/init.sql
4444
export POSTGRES_TEST_DSN="postgresql://postgres:postgres@localhost:5432/a2a_test"
4545
4646
- name: Install uv

0 commit comments

Comments
 (0)