Skip to content

Commit

Permalink
ci: make check
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Dec 2, 2023
1 parent d50e0bd commit 7ff4f29
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Run make install
if: steps.cache-venv.outputs.cache-hit != 'true'
run: make install
- run: make test
- run: make check test
- name: install k3d
run: curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
# - uses: mxschmitt/action-tmate@v3
Expand Down
3 changes: 3 additions & 0 deletions flows/ping_ray.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# allow missing imports because we may not have ray installed
# pyright: reportMissingImports=false

import grpc
import grpc._channel
import ray.core.generated.ray_client_pb2 as ray_client_pb2
Expand Down
3 changes: 3 additions & 0 deletions flows/ray_flow.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# allow missing imports because we may not have ray installed
# pyright: reportMissingImports=false

import sys

from prefect import flow, get_run_logger, task
Expand Down

0 comments on commit 7ff4f29

Please sign in to comment.