We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc9d03 commit 1bdb8f4Copy full SHA for 1bdb8f4
.github/workflows/server.yml
@@ -3,6 +3,11 @@ name: Server
3
4
on:
5
workflow_dispatch: # allows manual triggering
6
+ inputs:
7
+ slow_tests:
8
+ description: 'Run slow tests'
9
+ required: true
10
+ type: boolean
11
push:
12
branches:
13
- master
@@ -79,7 +84,7 @@ jobs:
79
84
80
85
- name: Slow tests
81
86
id: server_integration_tests_slow
82
- if: ${{ github.event.schedule != '' && matrix.build_type == 'Release' }}
87
+ if: ${{ github.event.schedule != '' && matrix.build_type == 'Release' || github.event.inputs.slow_tests == 'true' }}
83
88
run: |
89
cd examples/server/tests
90
PORT=8888 ./tests.sh --stop --no-skipped --no-capture --tags slow
0 commit comments