From 7adea716a792aa8e477de6aa0fdf3dbc9eebe1d9 Mon Sep 17 00:00:00 2001 From: Jairo Fernandez Date: Sun, 19 Jul 2026 12:14:41 -0500 Subject: [PATCH] ci: run tests on windows-latest Windows shell support (powershell/pwsh/cmd) shipped without a Windows runner, so cfg(windows) paths were never compiled or tested in CI. Add windows-latest to the matrix. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6808da0..830c4cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v4