add windows runner test

This commit is contained in:
2025-12-02 11:02:01 -06:00
parent d4099fb9a2
commit 4ec44900cf

View File

@@ -8,13 +8,18 @@ on:
branches: branches:
- main - main
defaults:
run:
shell: bash
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
permissions: permissions:
contents: read contents: read
strategy: strategy:
matrix: matrix:
os: ["ubuntu-latest", "windows-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps: steps:
@@ -40,5 +45,5 @@ jobs:
if: failure() if: failure()
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: test-logs-python-${{ matrix.python-version }} name: test-logs-${{ matrix.os }}-${{ matrix.python-version }}
path: tests/node.log path: tests/node.log