Skip to content

Commit

Permalink
feat(ci): expand matrix accross python and klipper versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Laikulo committed Sep 7, 2024
1 parent 66f5e32 commit 32ee5f2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@ jobs:
klipper_repo:
- klipper3d/klipper
- DangerKlippers/danger-klipper
klipper_version:
- master
- v0.12.0
python_version:
- '3.9' # Debian Bullseye default
- '3.11' # Debian Bookworm default
# Below disabled - Greenlet upstream version not compatable with py 3.12
# - '3.12' # Latest Released as of 2024/9
steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Checkout shaketune
uses: actions/checkout@v4
with:
Expand All @@ -23,7 +34,7 @@ jobs:
with:
path: klipper
repository: ${{ matrix.klipper_repo }}
ref: master
ref: ${{ matrix.klipper_version }}
- name: Install build dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit 32ee5f2

Please sign in to comment.