Skip to content

Commit

Permalink
server: tests: schedule slow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
phymbert committed Mar 2, 2024
1 parent 0fc9d03 commit 1bdb8f4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Server

on:
workflow_dispatch: # allows manual triggering
inputs:
slow_tests:
description: 'Run slow tests'
required: true
type: boolean
push:
branches:
- master
Expand Down Expand Up @@ -79,7 +84,7 @@ jobs:
- name: Slow tests
id: server_integration_tests_slow
if: ${{ github.event.schedule != '' && matrix.build_type == 'Release' }}
if: ${{ github.event.schedule != '' && matrix.build_type == 'Release' || github.event.inputs.slow_tests == 'true' }}
run: |
cd examples/server/tests
PORT=8888 ./tests.sh --stop --no-skipped --no-capture --tags slow

0 comments on commit 1bdb8f4

Please sign in to comment.