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