From 946ffebdaa01826484145158fd9e5197313dfc73 Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Mon, 5 May 2025 10:45:42 -0300 Subject: [PATCH] test: add windows on tests runner This will help us ensure the framework works well on Windows and Ubuntu --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5b53f0d12..26e4afde7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,10 +10,11 @@ env: jobs: tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} timeout-minutes: 15 strategy: matrix: + os: [ubuntu-latest, windows-latest] python-version: ['3.10', '3.11', '3.12'] steps: - name: Checkout code