Skip to content

Commit

Permalink
CI: test minimum python version
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude committed Nov 14, 2024
1 parent e17603b commit 71de74e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-async-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
matrix:
node-version: [ 20.x ]
neo4j-version: [ "4.4", "4.4-enterprise", "5", "5-enterprise" ]
python-version: [ "3.7", "3.x" ]
services:
neo4j:
image: neo4j:${{ matrix.neo4j-version }}
Expand All @@ -64,7 +65,7 @@ jobs:
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-sync-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
matrix:
node-version: [ 20.x ]
neo4j-version: [ "4.4", "4.4-enterprise", "5", "5-enterprise" ]
python-version: [ "3.7", "3.x" ]
services:
neo4j:
image: neo4j:${{ matrix.neo4j-version }}
Expand All @@ -64,7 +65,7 @@ jobs:
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 71de74e

Please sign in to comment.