test(standalone): tmp for single_node #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Example with Custom ENTRYPOINT and CMD | |
on: | |
pull_request: | |
types: [opened, edited, labeled] | |
jobs: | |
custom-entrypoint-cmd-job: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/risingwavelabs/risingwave:v1.8.1 | |
ports: | |
- 4566:4566 | |
options: >- | |
--entrypoint "/risingwave/bin/risingwave" | |
-- single_node | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Run custom command | |
run: | | |
echo "Running with custom ENTRYPOINT and CMD" |