From 770a1ef97da23117bda28f4814bd151d49e1fb9f Mon Sep 17 00:00:00 2001 From: Sergei Izmailov Date: Thu, 31 Aug 2023 16:40:57 +0900 Subject: [PATCH] ci: Fix windows --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 909c738..9ea40b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,8 +42,8 @@ jobs: strategy: fail-fast: false matrix: - pybind11-branch: [ "master" ] runs-on: [ "ubuntu-latest" ] + pybind11-branch: [ "master" ] python: - "3.11" - "3.10" @@ -52,6 +52,7 @@ jobs: - "3.7" include: - runs-on: "windows-2022" + pybind11-branch: "master" python: "3.11" steps: - uses: actions/checkout@v3 @@ -75,6 +76,7 @@ jobs: run: pip install . - name: Run tests + shell: bash run: > ./tests/run-tests.sh \ --pybind11-branch "${{ matrix.pybind11-branch }}" \