Skip to content

Commit ba5e3ba

Browse files
committed
install requirements.txt with GitHub actions
1 parent 0524f3a commit ba5e3ba

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
- uses: actions/setup-python@v2
1212
with:
1313
python-version: '3.x'
14+
- name: Install dependencies
15+
run: |
16+
python -m pip install --upgrade pip
17+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
1418
- run: python test_client.py
1519
env:
1620
TB_KEY: ${{ secrets.TB_KEY }}

0 commit comments

Comments
 (0)