leptess 0.14.0

Productive Rust binding for Tesseract and Leptonica.
Documentation
name: Document

on:
  push:
    branches: 
      - master

env:
  CARGO_TERM_COLOR: always

jobs:
  default:

    runs-on: ubuntu-latest

    steps:
    - name: Version information
      run: rustc --version; cargo --version
    - name: Install tesseract
      run: sudo apt-get install libleptonica-dev libtesseract-dev clang tesseract-ocr-eng
    - uses: actions/checkout@v2
    - name: Generate docs
      run: cargo doc
    - name: Deploy 🚀
      uses: JamesIves/github-pages-deploy-action@4.1.3
      with:
        branch: gh-pages # The branch the action should deploy to.
        folder: target/doc # The folder the action should deploy.