Skip to content

Commit

Permalink
some debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
phymbert committed Mar 13, 2024
1 parent f2ed07f commit c934ac5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ jobs:
- name: Tests
id: server_integration_tests
if: ${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }}
if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
run: |
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 }}"
echo id=${{ !matrix.disabled_on_pr || !github.event.pull_request }}
echo !matrix.disabled_on_pr=${{ !matrix.disabled_on_pr }}
echo !github.event.pull_request=${{ !github.event.pull_request }}
cd examples/server/tests
PORT=8888 ./tests.sh
Expand Down

0 comments on commit c934ac5

Please sign in to comment.