Skip to content

deps: Bump Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1 #70

deps: Bump Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1

deps: Bump Microsoft.NET.Test.Sdk from 18.7.0 to 18.8.1 #70

Workflow file for this run

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