Skip to content

Commit 1448fc2

Browse files
authored
ci: TT-411 inject secrets environment and test_db_connection (#351)
1 parent df3fe5c commit 1448fc2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ jobs:
2929
run: |
3030
pip install -r V2/requirements.txt
3131
32+
- name: Inject Secrets
33+
env:
34+
ENVIRONMENT: ${{ secrets.environment }}
35+
TEST_DB_CONNECTION: ${{ secrets.test_db_connection }}
36+
run: |
37+
echo $ENVIRONMENT
38+
echo $TEST_DB_CONNECTION
39+
3240
- name: Lint with flake8
3341
run: |
3442
cd V2

0 commit comments

Comments
 (0)