ci: Run check_pypi_version job across Python 3.9-3.12

This commit is contained in:
Paul Gauthier (aider) 2025-04-01 21:08:17 +13:00
parent b0623f04fe
commit ca0ffc66d1

View file

@ -9,11 +9,15 @@ on:
jobs: jobs:
check_version: check_version:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps: steps:
- name: Set up Python - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.x' python-version: ${{ matrix.python-version }}
- name: Install aider-chat - name: Install aider-chat
run: pip install aider-chat run: pip install aider-chat