Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ jobs:
fail-fast: false
matrix:
# Test all supported versions on Ubuntu:
os: [ubuntu-latest]
os: [ubuntu-latest, ubuntu-24.04-arm]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
experimental: [false]
build: ['']
Copy link
Contributor

@diegorusso diegorusso Jan 20, 2025

Choose a reason for hiding this comment

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

Do we want to include some experimental tasks on arm as well? (Block from line 27)

Copy link
Member Author

Choose a reason for hiding this comment

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

yeah we should add!

include:
# As the experimental task for the dev version.
- os: ubuntu-latest
python: "3.13-dev"
python: "3.13"
experimental: true
build: 'free-threading'
- os: ubuntu-24.04-arm
python: "3.13"
experimental: true
build: 'free-threading'
- os: ubuntu-latest
Expand Down
Loading