Skip to content

Add back windows workflow testing #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
May 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/check-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# os: [ ubuntu-latest, windows-latest ] - Exclude windows for now
os: [ ubuntu-latest ]
os: [ ubuntu-latest, windows-latest ]
python-version: [ "3.9", "3.10", "3.11", "3.12" , "3.13" ]
Copy link
Preview

Copilot AI May 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] There’s an extra space before the comma between "3.12" and "3.13"; removing it will improve YAML readability.

Suggested change
python-version: [ "3.9", "3.10", "3.11", "3.12" , "3.13" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]

Copilot uses AI. Check for mistakes.

exclude:
- os: windows-latest
python-version: "3.9"

runs-on: ${{ matrix.os }}

Expand Down
Loading