Skip to content

Commit 59a9165

Browse files
committed
CI: Run CodeQL scan on multiple SQLAlchemy versions
1 parent 8be0332 commit 59a9165

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ concurrency:
1717
cancel-in-progress: true
1818

1919
jobs:
20+
2021
analyze:
21-
name: Analyze
22+
name: "Analyze with SQLAlchemy ${{ matrix.sqla-version }}"
2223
runs-on: ubuntu-latest
2324
permissions:
2425
actions: read
@@ -29,6 +30,7 @@ jobs:
2930
fail-fast: false
3031
matrix:
3132
language: [ python ]
33+
sqla-version: ['1.3.24', '1.4.45']
3234

3335
steps:
3436
- name: Checkout
@@ -47,6 +49,7 @@ jobs:
4749
- name: Install project
4850
run: |
4951
pip install --editable=.[sqlalchemy,test,doc]
52+
pip install "sqlalchemy==${{ matrix.sqla-version }}" --upgrade --pre
5053
5154
- name: Perform CodeQL Analysis
5255
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)