Skip to content

Commit

Permalink
Merge pull request #80 from consideRatio/pr/refresh-ghwf
Browse files Browse the repository at this point in the history
ci: test against jupyterhub 5
  • Loading branch information
consideRatio committed Sep 11, 2024
2 parents f7d6b8c + 669bdf7 commit e09748b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ on:

jobs:
build-release:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- name: install build requirements
run: |
Expand Down
19 changes: 12 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,32 @@ on:

jobs:
pytest:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.7"
jupyterhub-version: 1.*
sqlalchemy-version: 1.*
runs-on: ubuntu-22.04
- python-version: "3.8"
jupyterhub-version: 2.0.*
sqlalchemy-version: 1.*
- python-version: "3.9"
jupyterhub-version: 2.*
sqlalchemy-version: 1.*
- python-version: "3.10"
runs-on: ubuntu-22.04
- python-version: "3.9"
jupyterhub-version: 3.0.*
sqlalchemy-version: 1.*
- python-version: "3.11"
runs-on: ubuntu-latest
- python-version: "3.10"
jupyterhub-version: 3.*
- python-version: "3.12"
runs-on: ubuntu-latest
- python-version: "3.11"
jupyterhub-version: 4.*
runs-on: ubuntu-latest
- python-version: "3.12"
jupyterhub-version: 5.*
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e09748b

Please sign in to comment.