Skip to content

Improved Tilt Correction #14

Improved Tilt Correction

Improved Tilt Correction #14

Workflow file for this run

name: Release of OCR Wrapper package
on:
release:
types: [published]
jobs:
pip-release:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -e .
# - name: Run tests
# run: |
# pip install pytest pytest-mock
# pytest -m githubtest --disable-warnings ucn/tests
- name: Push package to Gemfury
if: success()
env:
PIP_PUSH: ${{ secrets.PIP_PUSH }}
run: |
sh devops/deploy.sh