Update README #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push rapidocr_pdf to pypi | |
on: | |
push: | |
# branches: [ main ] | |
# paths: | |
# - 'rapidocr_pdf/**' | |
# - 'docs/doc.md' | |
# - 'setup.py' | |
# - '.github/workflows/gen_whl_to_pypi_rapidocr_pdf.yml' | |
tags: | |
- v* | |
jobs: | |
UnitTesting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull latest code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
architecture: 'x64' | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Unit testings with rapidocr_onnxruntime | |
run: | | |
pip install -r requirements.txt | |
pip install pytest pymupdf==1.22.5 rapidocr_onnxruntime==1.2.13 | |
pytest tests/test*.py | |
- name: Unit testings with rapidocr_openvino | |
run: | | |
pip uninstall rapidocr_onnxruntime -y | |
pip install rapidocr_openvino pymupdf==1.22.5 rapidocr_openvino==1.2.12 | |
pytest tests/test*.py | |
GenerateWHL_PushPyPi: | |
needs: UnitTesting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
architecture: 'x64' | |
- name: Run setup.py | |
run: | | |
pip install -r requirements.txt | |
python -m pip install --upgrade pip | |
pip install wheel get_pypi_latest_version | |
python setup.py bdist_wheel ${{ github.event.head_commit.message }} | |
- name: Publish distribution 📦 to PyPI | |
uses: pypa/gh-action-pypi-publish@v1.5.0 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
packages_dir: dist/ |