From 00a573b3a0976c349ee2ce7d74718f22841ac9c6 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 22 Jul 2024 18:03:11 +0100 Subject: [PATCH] style(ci): format dotnet.yml workflow file --- .github/workflows/dotnet.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 6a4845b..c438a79 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -11,13 +11,17 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Setup .NET uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x + - name: Restore dependencies run: dotnet restore + - name: Build run: dotnet build --no-restore --configuration Release + - name: Test run: dotnet test --no-build --verbosity normal