Skip to content

Commit 66b8f43

Browse files
committed
CI: app test
1 parent e72dada commit 66b8f43

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ jobs:
5050
- name: Check JupyterLab
5151
run: docker compose run --rm -T jupyterlab --version
5252

53+
- name: Run app smoke test
54+
run: docker compose run --rm -T app
55+
5356
- name: Ruff lint
5457
run: docker compose run --rm -e RUFF_CACHE_DIR=/tmp/ruff-cache dev ruff check .
5558

src/sample/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_sample(k: int) -> list[float]:
1717
return floats.tolist()
1818

1919

20-
def run(k: int) -> list[float]:
20+
def run(k: int = 10) -> list[float]:
2121
"""Example of run.
2222
2323
Args:

0 commit comments

Comments
 (0)