Skip to content

Commit d0f325c

Browse files
committed
Init
1 parent 944c94a commit d0f325c

File tree

6 files changed

+321
-80
lines changed

6 files changed

+321
-80
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ jobs:
3131
runs-on: "ubuntu-latest"
3232
steps:
3333
- uses: actions/checkout@v4
34+
- name: Set up PostgreSQL
35+
uses: ikalnytskyi/action-setup-postgres@v4
36+
with:
37+
username: postgres
38+
password: postgres
39+
database: taskiqpsqlpy
40+
id: postgres
3441
- name: Set up Python
3542
uses: actions/setup-python@v2
3643
with:
@@ -43,12 +50,6 @@ jobs:
4350
run: poetry install
4451
env:
4552
POETRY_VIRTUALENVS_CREATE: false
46-
- name: Update docker-compose
47-
uses: KengoTODA/actions-setup-docker-compose@v1
48-
with:
49-
version: "2.16.0"
50-
- name: docker compose up
51-
run: docker-compose up -d --wait
5253
- name: Run pytest check
5354
run: poetry run pytest -vv -n auto --cov="taskiq_psqlpy" .
5455
- name: Generate report

0 commit comments

Comments
 (0)