From 0d824e99194d33610b20bb75b2f9b436bf4d59dd Mon Sep 17 00:00:00 2001 From: Mark Lechtermann Date: Mon, 8 May 2023 08:26:02 +0200 Subject: [PATCH] build: debug --- .github/workflows/code-style.yaml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.github/workflows/code-style.yaml b/.github/workflows/code-style.yaml index 362395a..49dafec 100644 --- a/.github/workflows/code-style.yaml +++ b/.github/workflows/code-style.yaml @@ -18,14 +18,25 @@ jobs: with: global-json-file: "./global.json" - - name: Clean - run: dotnet clean - - - name: Restore + - name: Restore dependencies run: dotnet restore - - name: Build - run: dotnet build + - name: Check dotnet version + run: dotnet --version + + - name: Check dotnet version + run: dotnet format --version + + - name: Check dotnet version + run: echo $env:Path + + - name: Check dotnet version + run: dir "C:\Program Files\dotnet" + + - name: Check dotnet version + run: gcm dotnet - name: Check code format (editorconfig) run: dotnet format --verify-no-changes + with: + global-json-file: "./global.json"