Skip to content

Commit 435c46a

Browse files
committed
ci: fix postgresql env file in codecov.yml
1 parent 61d22a0 commit 435c46a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/codecov.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- name: Install dependencies
3434
run: poetry install
3535
- name: Start PostgreSQL
36-
run: make start-db
36+
run: |
37+
cp pgmq_postgres.template.env pgmq_postgres.env
38+
make start-db
3739
- name: Run tests and collect coverage
3840
run: poetry run pytest tests --cov=pgmq_sqlalchemy.queue --cov-report=xml
3941
- name: Upload coverage reports to Codecov with GitHub Action

0 commit comments

Comments
 (0)