We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0524f3a commit ba5e3baCopy full SHA for ba5e3ba
.github/workflows/test.yml
@@ -11,6 +11,10 @@ jobs:
11
- uses: actions/setup-python@v2
12
with:
13
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
18
- run: python test_client.py
19
env:
20
TB_KEY: ${{ secrets.TB_KEY }}
0 commit comments