Skip to content

Commit 91e8cca

Browse files
authored
fix: removed solution path from format step (#63)
1 parent 3425a1f commit 91e8cca

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/cicd-dotnet.yml

-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ jobs:
8282
dotnet-version: ${{ inputs.dotnet-version || '8.x' }}
8383
dotnet-quality: ${{ inputs.dotnet-quality || 'ga' }}
8484
runs-on: ${{ inputs.runs-on-build || 'ubuntu-latest' }}
85-
solution: ${{ inputs.solution }}
8685
secrets: inherit
8786

8887
codeql:

.github/workflows/step-dotnet-format.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
required: false
1818
type: string
1919
default: ubuntu-latest
20-
solution:
21-
required: true
22-
type: string
2320
secrets:
2421
FETCH_TOKEN:
2522
required: false
@@ -50,4 +47,4 @@ jobs:
5047
- name: Linting solution
5148
run: |
5249
dotnet tool restore
53-
dotnet csharpier --check ${{ inputs.solution }}
50+
dotnet csharpier --check .

0 commit comments

Comments
 (0)