Skip to content

Commit d90620d

Browse files
committed
ci: TT-401 fix inject secrets
1 parent e3f5300 commit d90620d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
max-parallel: 5
17+
env:
18+
ENVIRONMENT: test
19+
TEST_DB_CONNECTION: 'sqlite:///:memory:'
1720
steps:
1821
- uses: actions/checkout@v2
1922
- name: Set up Python 3.10.0
@@ -30,9 +33,6 @@ jobs:
3033
pip install -r V2/requirements.txt
3134
3235
- name: Inject Secrets
33-
env:
34-
ENVIRONMENT: ${{ secrets.environment }}
35-
TEST_DB_CONNECTION: ${{ secrets.test_db_connection }}
3636
run: |
3737
echo $ENVIRONMENT
3838
echo $TEST_DB_CONNECTION

0 commit comments

Comments
 (0)