This commit is contained in:
Leonid Pershin
2025-10-17 07:43:38 +03:00
parent 2336e2a0c2
commit 53d87b5d6f

View File

@@ -16,15 +16,18 @@ jobs:
build: build:
name: Build, Test, Coverage, and Analyze name: Build, Test, Coverage, and Analyze
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:9.0
env: env:
PATH: ${{ env.PATH }}:/root/.dotnet/tools PATH: ${{ env.PATH }}:/root/.dotnet/tools
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v4 run: |
with: echo "Setting up .NET..."
dotnet-version: ${{ env.DOTNET_VERSION }} dotnet --version
echo "Dotnet is available"
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: dotnet restore