Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cuicaihao committed Mar 23, 2024
2 parents 3484023 + 4ece89b commit 3c83730
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/python-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,20 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install setuptools
run: |
pip install setuptools wheel
- name: re-Build Python package
run: |
python setup.py sdist bdist_wheel
- name: Install Python Package
run: |
pip install dist/*.whl
- name: Install twine
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 3c83730

Please sign in to comment.