We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72dada commit 66b8f43Copy full SHA for 66b8f43
.github/workflows/ci.yml
@@ -50,6 +50,9 @@ jobs:
50
- name: Check JupyterLab
51
run: docker compose run --rm -T jupyterlab --version
52
53
+ - name: Run app smoke test
54
+ run: docker compose run --rm -T app
55
+
56
- name: Ruff lint
57
run: docker compose run --rm -e RUFF_CACHE_DIR=/tmp/ruff-cache dev ruff check .
58
src/sample/main.py
@@ -17,7 +17,7 @@ def get_sample(k: int) -> list[float]:
17
return floats.tolist()
18
19
20
-def run(k: int) -> list[float]:
+def run(k: int = 10) -> list[float]:
21
"""Example of run.
22
23
Args:
0 commit comments