-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose extra command line options #420
Comments
Add You can use it as follows. Example) on: push
jobs:
inspection:
runs-on: ubuntu-latest
name: Inspection
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Restore
run: dotnet restore
- name: Inspect code
uses: muno92/resharper_inspectcode@v1
with:
solutionPath: ./YourSolution.sln
noCache: true
cachesHome: /path/to/caches_home |
Perfect, thank you 😀 |
Whoops, reopening this as I only just got to testing out the new options. It looks like the |
@seanm-fathomhq I forgot |
All good 😁 I should have tested it before closing to make sure. I have definitely tried it this time now though and it is working, thank you! |
Would it be possible to expose the
--no-build
and the--caches-home
options? I am working in a large solution and trying to bring down the run time of the action with caching and it's a bit tricky at the moment because these options aren't exposed.The text was updated successfully, but these errors were encountered: