From f19b046450911e4108dab50cc7ee867205c7275c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Krch?= Date: Sun, 20 Oct 2024 20:43:36 +0200 Subject: [PATCH] pipeline update --- .github/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d07f674..3bd30c1d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,8 +31,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8.0.100 + - name: Restore dependencies + run: dotnet restore - name: Run dotnet format run: dotnet format --exclude ./examples/** --verify-no-changes