Skip to content

test build on windows #9

test build on windows

test build on windows #9

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 install conda-forge::poppler conda-forge::ocrmypdf --no-deps
- 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