Skip to content

Commit 53cabaa

Browse files
feat: initial implementation
1 parent 36b053c commit 53cabaa

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
python-version: ["3.11", "3.12"]
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: ${{ matrix.python-version }}
14+
- run: python -m pytest test_notebook_server.py -v --tb=short

0 commit comments

Comments
 (0)