Skip to content

test.

test. #2

Workflow file for this run

name: Code cov
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/code-cov.yml
with:
cmake_build_type: RelWithAssert

Check failure on line 26 in .github/workflows/code-coverage.yml

View workflow run for this annotation

GitHub Actions / Code cov

Invalid workflow file

The workflow is not valid. .github/workflows/code-coverage.yml (Line: 26, Col: 25): Invalid input, cmake_build_type is not defined in the referenced workflow. .github/workflows/code-coverage.yml (Line: 27, Col: 27): Invalid input, add_cmake_cfg_args is not defined in the referenced workflow.
add_cmake_cfg_args: -D VERY_SHORT_TESTS=ON
branch_name: ${{github.event.inputs.branch}}
code_coverage: true