Skip to content

Commit 1e8220b

Browse files
committed
update release action
1 parent 85ae828 commit 1e8220b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
1312
- name: Set up Python
1413
uses: actions/setup-python@v2
1514
with:
@@ -18,8 +17,12 @@ jobs:
1817
- name: Install dependencies
1918
run: |
2019
python -m pip install --upgrade pip
21-
pip install setuptools wheel
20+
pip install setuptools wheel pytest
2221
22+
- name: Test with pytest
23+
run: |
24+
pytest
25+
2326
- name: Build a binary wheel and a source tarball
2427
run: |
2528
python setup.py sdist bdist_wheel

0 commit comments

Comments
 (0)