From 0006adbe7c307d2907dc58efe7c9588f69b88cf5 Mon Sep 17 00:00:00 2001 From: iminet Date: Wed, 12 Aug 2026 21:58:00 +0200 Subject: [PATCH] Update GitHub Actions workflow --- .github/workflows/hello.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml index dd5658f..b277f7b 100644 --- a/.github/workflows/hello.yml +++ b/.github/workflows/hello.yml @@ -8,6 +8,16 @@ jobs: runs-on: ubuntu-latest steps: + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: '10.0.x' + + - run: dotnet --info + + - run: dotnet restore + + - run: dotnet build --configuration Release + - name: Say hello run: echo "Hello from GitHub Actions!"