From 36525c65f46b069304b418e1e0eb609ddd2cbb43 Mon Sep 17 00:00:00 2001 From: Maxime Mangel Date: Wed, 25 Oct 2023 19:55:12 +0200 Subject: [PATCH] Try fixing CI for Python on Windows --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb5672c6c9..dba37c2c80 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,10 +122,14 @@ jobs: pip install poetry poetry install - - name: Fable Tests - Python - # + - name: Fable Tests - Python (linux) + if: matrix.platform == 'ubuntu-latest' run: ./build.sh test python --skip-fable-library + - name: Fable Tests - Python (Windows) + if: matrix.platform == 'windows-latest' + run: .\build.bat test python --skip-fable-library + # Separate build job for Rust (will run in parallel) build-rust: runs-on: ubuntu-latest