test build on windows #5
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: Test windows build | |
on: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ${{ matrix.os-target.os }} | |
strategy: | |
matrix: | |
os-target: | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Conda (windows) | |
if: matrix.os-target.os == 'windows-latest' | |
uses: s-weigand/setup-conda@v1 | |
with: | |
update-conda: true | |
activate-conda: false | |
python-version: "3.11" | |
- name: Install pdftotext dependencies (windows) | |
if: matrix.os-target.os == 'windows-latest' | |
run: | | |
conda --version | |
conda search ocrmypdf --info | |
conda install -c conda-forge poppler ocrmypdf=14.2.0 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
target: ${{ matrix.os-target.target }} | |
- name: Install Statement Sensei dependencies (windows) | |
if: matrix.os-target.os == 'windows-latest' | |
uses: ./.github/actions/setup-python-poetry | |
with: | |
python-version: "3.11" | |
poetry-version: "1.8.3" | |
poetry-install-args: --with main --with build --without dev --extras ocrmypdf |