Skip to content

Commit e09748b

Browse files
authored
Merge pull request #80 from consideRatio/pr/refresh-ghwf
ci: test against jupyterhub 5
2 parents f7d6b8c + 669bdf7 commit e09748b

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ on:
2626

2727
jobs:
2828
build-release:
29-
runs-on: ubuntu-22.04
29+
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-python@v5
3333
with:
34-
python-version: "3.11"
34+
python-version: "3.12"
3535

3636
- name: install build requirements
3737
run: |

.github/workflows/test.yaml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,32 @@ on:
2323

2424
jobs:
2525
pytest:
26-
runs-on: ubuntu-22.04
26+
runs-on: ${{ matrix.runs-on }}
2727
strategy:
2828
fail-fast: false
2929
matrix:
3030
include:
3131
- python-version: "3.7"
3232
jupyterhub-version: 1.*
3333
sqlalchemy-version: 1.*
34+
runs-on: ubuntu-22.04
3435
- python-version: "3.8"
35-
jupyterhub-version: 2.0.*
36-
sqlalchemy-version: 1.*
37-
- python-version: "3.9"
3836
jupyterhub-version: 2.*
3937
sqlalchemy-version: 1.*
40-
- python-version: "3.10"
38+
runs-on: ubuntu-22.04
39+
- python-version: "3.9"
4140
jupyterhub-version: 3.0.*
4241
sqlalchemy-version: 1.*
43-
- python-version: "3.11"
42+
runs-on: ubuntu-latest
43+
- python-version: "3.10"
4444
jupyterhub-version: 3.*
45-
- python-version: "3.12"
45+
runs-on: ubuntu-latest
46+
- python-version: "3.11"
4647
jupyterhub-version: 4.*
48+
runs-on: ubuntu-latest
49+
- python-version: "3.12"
50+
jupyterhub-version: 5.*
51+
runs-on: ubuntu-latest
4752

4853
steps:
4954
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)