Skip to content

Commit c934ac5

Browse files
committed
some debugs
1 parent f2ed07f commit c934ac5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/server.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,11 @@ jobs:
7878
7979
- name: Tests
8080
id: server_integration_tests
81-
if: ${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }}
81+
if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
8282
run: |
83-
echo " id=${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }} matrix.disabled_on_pr=${{ matrix.disabled_on_pr }} github.event.pull_request=${{ github.event.pull_request }}"
83+
echo id=${{ !matrix.disabled_on_pr || !github.event.pull_request }}
84+
echo !matrix.disabled_on_pr=${{ !matrix.disabled_on_pr }}
85+
echo !github.event.pull_request=${{ !github.event.pull_request }}
8486
cd examples/server/tests
8587
PORT=8888 ./tests.sh
8688

0 commit comments

Comments
 (0)