Skip to content

Commit

Permalink
ci: update test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Sep 12, 2024
1 parent df5e6c3 commit aa75ebe
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
include:
- python-version: "3.8"
pip-install-spec: "jupyterhub==2.3.1 sqlalchemy==1.*"
- python-version: "3.9"
pip-install-spec: "jupyterhub==3.*"
- python-version: "3.10"
pip-install-spec: "jupyterhub==4.*"
- python-version: "3.11"
pip-install-spec: "jupyterhub==5.*"
- python-version: "3.12"
pip-install-spec: "jupyterhub"

steps:
- uses: actions/checkout@v4
Expand All @@ -46,7 +51,7 @@ jobs:

- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install ${{ matrix.pip-install-spec }}
pip install -e ".[test]"
- name: List packages
Expand Down

0 comments on commit aa75ebe

Please sign in to comment.