Skip to content

Commit

Permalink
Update python-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
myifeng authored Jun 4, 2024
1 parent a934f32 commit 4aba1fa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest setuptools wheel twine
pip install pytest setuptools wheel twine build
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build and test
run: |
python setup.py install sdist bdist_wheel
python -m build
pip install dist/article_parser-*.whl
pytest --disable-warnings

0 comments on commit 4aba1fa

Please sign in to comment.