Hi, I'm wondering if there's any ideas for how to support other build systems which don't support running linting or unit tests at the same level of granularity as CLI tools.
We use gradle for a groovy project, and in general I run: ./gradlew check which generates both lint and unit test reports whose output I'd like to collect on arc diff.
In essence, would it be possible to do something like:
- run arc diff
- This would first do ./gradlew check
- linter collects checkstyle output
- unit test runner collects xUnit output