diff --git a/.github/workflows/code-style.yaml b/.github/workflows/code-style.yaml index 79ca1ac..362395a 100644 --- a/.github/workflows/code-style.yaml +++ b/.github/workflows/code-style.yaml @@ -18,8 +18,14 @@ jobs: with: global-json-file: "./global.json" - - name: Restore dependencies + - name: Clean + run: dotnet clean + + - name: Restore run: dotnet restore + - name: Build + run: dotnet build + - name: Check code format (editorconfig) run: dotnet format --verify-no-changes