Skip to content

Commit

Permalink
Add env setup step
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-kaiumov committed Apr 23, 2024
1 parent 9a31974 commit dd54b30
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ jobs:
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Setup environment
run: |
mkdir data
echo '${{ secrets.CREDS_TEST }}' > data/credentials.json
echo '${{ secrets.TOKEN_TEST }}' > data/token.json
echo "${{ secrets.ENV_TEST }}" > .env
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
Expand Down

0 comments on commit dd54b30

Please sign in to comment.