Skip to content

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.9.0 in /src #3

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.9.0 in /src

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.9.0 in /src #3

Workflow file for this run

name: Pull Request Check
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build project
run: dotnet build --configuration Release ./src
- name: Test project
run: dotnet test --configuration Release ./src