Skip to content

Commit 1bdb8f4

Browse files
committed
server: tests: schedule slow dispatch
1 parent 0fc9d03 commit 1bdb8f4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/server.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: Server
33

44
on:
55
workflow_dispatch: # allows manual triggering
6+
inputs:
7+
slow_tests:
8+
description: 'Run slow tests'
9+
required: true
10+
type: boolean
611
push:
712
branches:
813
- master
@@ -79,7 +84,7 @@ jobs:
7984
8085
- name: Slow tests
8186
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' }}
8388
run: |
8489
cd examples/server/tests
8590
PORT=8888 ./tests.sh --stop --no-skipped --no-capture --tags slow

0 commit comments

Comments
 (0)