mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
ci: Run check_pypi_version job across Python 3.9-3.12
This commit is contained in:
parent
b0623f04fe
commit
ca0ffc66d1
1 changed files with 6 additions and 2 deletions
8
.github/workflows/check_pypi_version.yml
vendored
8
.github/workflows/check_pypi_version.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue