Invalid Renaming in Project Level Workspace #47
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: Format with ReSharper | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET tools | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install ReSharper Command Line Tool | |
run: | | |
dotnet tool install -g JetBrains.ReSharper.GlobalTools | |
- name: Run ReSharper Inspection | |
run: | | |
export PATH="$PATH:/root/.dotnet/tools" | |
jb cleanupcode -a src/Plana.sln | |
- name: Set Results | |
run: | | |
git add -A | |
git diff-index --quiet HEAD |