Skip to content

fix signing

fix signing #20

Workflow file for this run

name: Tests
on: ["push", "pull_request"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install .[docs,test]
sudo apt install tesseract-ocr
- name: Run tests
run: pytest
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}