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 d3c0c9f commit 4f0c52aCopy full SHA for 4f0c52a
.github/workflows/deploy.yml
@@ -12,8 +12,11 @@ jobs:
12
steps:
13
- name: Checkout
14
uses: actions/checkout@v2
15
- - name: Validate
16
- uses: ./.github/actions/validate
+
+ - name: Install Packages
17
+ run: pip install -r requirements.txt
18
19
+ - name: Test
20
env:
21
BW_ACCOUNT_ID: ${{ secrets.BW_ACCOUNT_ID }}
22
BW_USERNAME: ${{ secrets.BW_USERNAME }}
@@ -23,6 +26,8 @@ jobs:
23
26
BW_NUMBER: ${{ secrets.BW_NUMBER }}
24
27
USER_NUMBER: ${{ secrets.USER_NUMBER }}
25
28
BASE_CALLBACK_URL: ${{ secrets.BASE_CALLBACK_URL }}
29
+ run: python -m pytest --pyargs bandwidth
30
31
- name: Deploy to PYPI
32
uses: ./.github/actions/deploy
33
0 commit comments