Skip to content

Commit

Permalink
test runner, add windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexm96 authored and bosd committed Jul 19, 2024
1 parent a55de2d commit 3c61b97
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.x, 3.11, 3.12]
os: [ubuntu-latest]
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -18,10 +18,18 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install tesseract-ocr poppler-utils imagemagick ghostscript
pip install -U ocrmypdf
- name: Install system dependencies (Windows)
if: runner.os == 'Windows'
run: |
choco install tesseract poppler imagemagick ghostscript
pip install -U ocrmypdf
- name: Install testing dependencies
run: |
pip install -U wheel pip
Expand Down

0 comments on commit 3c61b97

Please sign in to comment.