Skip to content

Commit

Permalink
[CRON] Fix credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
Herklos committed Sep 12, 2021
1 parent be239c4 commit e29f876
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
python start.py tentacles --install --location "../any_platform.zip" --all
- name: Compile project
env:
BINANCE_API_KEY: ${{ secrets.BINANCE_API_KEY }}
BINANCE_API_SECRET: ${{ secrets.BINANCE_API_SECRET }}
run: |
cd OctoBot
python setup.py build_ext --inplace
Expand All @@ -41,6 +44,8 @@ jobs:
- name: Pytests
env:
CYTHON_IGNORE: True
BINANCE_API_KEY: ${{ secrets.BINANCE_API_KEY }}
BINANCE_API_SECRET: ${{ secrets.BINANCE_API_SECRET }}
run: |
cd OctoBot
pytest --cov=. --cov-config=.coveragerc --durations=0 -rw tentacles/Trading/Exchange
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,11 @@ jobs:
if: matrix.type == 'cython'
env:
CYTHON_IGNORE: True
BINANCE_API_KEY: ${{ secrets.BINANCE_API_KEY }}
BINANCE_API_SECRET: ${{ secrets.BINANCE_API_SECRET }}
run: |
cd OctoBot
pytest --cov=. --cov-config=.coveragerc --durations=0 -rw --ignore=tentacles/Trading/Exchange tentacles
- name: Pytests
env:
BINANCE_API_KEY: ${{ secrets.BINANCE_API_KEY }}
BINANCE_API_SECRET: ${{ secrets.BINANCE_API_SECRET }}
if: matrix.type != 'cython'
run: |
cd OctoBot
Expand Down

0 comments on commit e29f876

Please sign in to comment.