Skip to content

Commit e131290

Browse files
committed
Add rel_2_0 branch to matrix
1 parent 4f01c01 commit e131290

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/third_party.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ jobs:
309309
# PyPy is deliberately omitted here, since SQLAlchemy's tests
310310
# fail on PyPy for reasons unrelated to typing_extensions.
311311
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
312+
checkout-ref: [ "main", "rel_2_0" ]
312313
# sqlalchemy tests fail when using the Ubuntu 24.04 runner
313314
# https://github.com/sqlalchemy/sqlalchemy/commit/8d73205f352e68c6603e90494494ef21027ec68f
314315
runs-on: ubuntu-22.04
@@ -322,7 +323,7 @@ jobs:
322323
- name: Install uv
323324
run: curl -LsSf https://astral.sh/uv/install.sh | sh
324325
- name: Checkout sqlalchemy
325-
run: git clone --depth=1 https://github.com/sqlalchemy/sqlalchemy.git || git clone --depth=1 https://github.com/sqlalchemy/sqlalchemy.git
326+
run: for i in {1..2}; do git clone -b ${{ matrix.checkout-ref }} --depth=1 https://github.com/sqlalchemy/sqlalchemy.git && break; done
326327
- name: Checkout typing_extensions
327328
uses: actions/checkout@v4
328329
with:

0 commit comments

Comments
 (0)