Skip to content

Commit 4f0c52a

Browse files
authored
Update deploy.yml (#38)
1 parent d3c0c9f commit 4f0c52a

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15-
- name: Validate
16-
uses: ./.github/actions/validate
15+
16+
- name: Install Packages
17+
run: pip install -r requirements.txt
18+
19+
- name: Test
1720
env:
1821
BW_ACCOUNT_ID: ${{ secrets.BW_ACCOUNT_ID }}
1922
BW_USERNAME: ${{ secrets.BW_USERNAME }}
@@ -23,6 +26,8 @@ jobs:
2326
BW_NUMBER: ${{ secrets.BW_NUMBER }}
2427
USER_NUMBER: ${{ secrets.USER_NUMBER }}
2528
BASE_CALLBACK_URL: ${{ secrets.BASE_CALLBACK_URL }}
29+
run: python -m pytest --pyargs bandwidth
30+
2631
- name: Deploy to PYPI
2732
uses: ./.github/actions/deploy
2833
env:

0 commit comments

Comments
 (0)