Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: TT-411 inject secrets environment and test_db_connection
  • Loading branch information
scastillo-jp committed Nov 17, 2021
commit af73a3cd913434479efc535cb5f9e92b98255cf9
8 changes: 8 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ jobs:
run: |
pip install -r V2/requirements.txt

- name: Inject Secrets
env:
ENVIRONMENT: ${{ secrets.environment }}
TEST_DB_CONNECTION: ${{ secrets.test_db_connection }}
run: |
echo $ENVIRONMENT
echo $TEST_DB_CONNECTION

- name: Lint with flake8
run: |
cd V2
Expand Down