Skip to content

Commit

Permalink
Test running server
Browse files Browse the repository at this point in the history
Signed-off-by: Guian Gumpac <[email protected]>
  • Loading branch information
GumpacG committed Sep 11, 2024
1 parent 22d6a13 commit bf650bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
steps:
- name: Start Valkey server
run: |
if ${{ matrix.host.OS }} == ubuntu; then
if '${{ matrix.host.OS }}' == 'ubuntu'; then
apt-get install valkey
systemctl start valkey
else
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Stop Valkey server
if: ${{ always() }}
run: |
if ${{ matrix.host.OS }} == 'ubuntu'; then
if '${{ matrix.host.OS }}' == 'ubuntu'; then
systemctl stop valkey
else
brew services stop valkey
Expand Down

0 comments on commit bf650bd

Please sign in to comment.