From 302a6684f60e0f78e95781d9a338735449636acd Mon Sep 17 00:00:00 2001 From: Mark Lechtermann Date: Mon, 8 May 2023 08:12:58 +0200 Subject: [PATCH] build: debug --- .github/workflows/code-style.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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