Skip to content

Commit bbf318b

Browse files
committed
Added credentials as github secrets
1 parent 5cafa0a commit bbf318b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/gitflow.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
- name: Run the tests with coverage
3131
env:
3232
DJANGO_SETTINGS_MODULE: "Videogames_project.settings"
33+
DB_NAME: ${{ secrets.DB_NAME }}
34+
DB_USER: ${{ secrets.DB_USER }}
35+
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
36+
DB_HOST: ${{ secrets.DB_HOST }}
37+
3338
run: |
3439
coverage run -m pytest -v -s
3540

0 commit comments

Comments
 (0)