Skip to content

chore: drop Python 3.9 support for running SAM, add Python 3.12-3.14 to CI #3892

chore: drop Python 3.9 support for running SAM, add Python 3.12-3.14 to CI

chore: drop Python 3.9 support for running SAM, add Python 3.12-3.14 to CI #3892

Workflow file for this run

name: Tests
on:
push:
branches:
- develop
- "feat-*"
pull_request:
workflow_dispatch:
merge_group:
types: [checks_requested]
jobs:
build:
name: ${{ matrix.os }} / ${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- run: make init
- run: make pr