actions-rs/grcov

Configuration using `with: ...` in workflow yaml?

anp opened this issue · 0 comments

anp commented

Motivation

It would be nice to configure grcov inline with my other workflow commands, similar to how the other actions-rs actions work.

Workflow example

- uses: actions-rs/grcov@v0.1
  with:
    branch: true
    ignore-not-existing: true
    llvm: true
    filter: covered
    output-type: lcov
    output-path: ./lcov.info
    prefix-dir: /home/user/build/
    ignore:
      - "/*"
      - "C:/*"
      - "../*"
    path-mapping:
      - "/path1"
      - "/path2"

Additional context

I think this method of configuration should probably be mutually exclusive with the separate configuration file.