Test coverage job. #576
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
Check failure on line 24 in .github/workflows/long-tests.yml GitHub Actions / Long testsInvalid workflow file
|
||
with: | ||
cmake_build_type: RelWithAssert | ||
add_cmake_cfg_args: -D LONG_TESTS=ON | ||
branch_name: ${{github.event.inputs.branch}} | ||
code_coverage: true | ||
secrets: inherit |