Skip to content

Bump Microsoft.NET.Test.Sdk from 18.3.0 to 18.5.1 #185

Bump Microsoft.NET.Test.Sdk from 18.3.0 to 18.5.1

Bump Microsoft.NET.Test.Sdk from 18.3.0 to 18.5.1 #185

Workflow file for this run

name: .NET Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: falkordb/falkordb
ports:
- 6379:6379
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup .NET
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
with:
dotnet-version: 10.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal