-
-
Notifications
You must be signed in to change notification settings - Fork 131
30 lines (27 loc) · 710 Bytes
/
long-tests.yml
File metadata and controls
30 lines (27 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Long tests
on:
# run tests on push events
push:
# run tests on PR events
pull_request:
types: [opened, synchronize]
# run tests manually on a given branch (default is master)
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
branch:
# branch to test
description: 'branch to test'
# Default value if no value is explicitly provided
default: 'master'
required: false
# job
jobs:
mmg-debug:
uses: ./.github/workflows/main-job.yml
with:
cmake_build_type: RelWithAssert
add_cmake_cfg_args: -D LONG_TESTS=ON
branch_name: ${{github.event.inputs.branch}}
code_coverage: true
secrets: inherit