From ae3d485c734e732d9ace6eefc4fb433ef8ae1005 Mon Sep 17 00:00:00 2001 From: Sergey Astanin Date: Tue, 8 Oct 2024 11:53:07 +0200 Subject: [PATCH] add windows build to github actions job matrix --- .github/workflows/tabulate.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tabulate.yml b/.github/workflows/tabulate.yml index 64cfbd8..9b113c9 100644 --- a/.github/workflows/tabulate.yml +++ b/.github/workflows/tabulate.yml @@ -6,10 +6,11 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: matrix: python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] + os: ["ubuntu-latest", "windows-latest"] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4