Skip to content

deps: Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.3.0 #6

deps: Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.3.0

deps: Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.3.0 #6

Workflow file for this run

name: Dotnet CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore
working-directory: dotnet
run: dotnet restore
- name: Build
working-directory: dotnet
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: dotnet
run: dotnet test --configuration Release --no-build --logger "trx;LogFileName=test-results.trx"