Skip to content

Commit be39cde

Browse files
committed
chore: Move docker/postgres/init.sql to tests/
1 parent 4e02c19 commit be39cde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
strategy:
2525
matrix:
26-
python-version: ['3.10', '3.13']
26+
python-version: ["3.10", "3.13"]
2727
steps:
2828
- name: Checkout code
2929
uses: actions/checkout@v4
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set postgres for tests
3535
run: |
3636
sudo apt-get update && sudo apt-get install -y postgresql-client
37-
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d a2a_test -f ${{ github.workspace }}/docker/postgres/init.sql
37+
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d a2a_test -f ${{ github.workspace }}/tests/docker/postgres/init.sql
3838
export POSTGRES_TEST_DSN="postgresql+asyncpg://postgres:postgres@localhost:5432/a2a_test"
3939
4040
- name: Install uv

0 commit comments

Comments
 (0)