Skip to content

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #107

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #107

Workflow file for this run

name: "Build / Test"
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-code:
name: "C# Code"
runs-on: ubuntu-latest
env:
SOLUTION_LOCATION: "./src/FeedlyOpmlExport.sln"
steps:
- uses: actions/checkout@v4
name: Pull the code
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.x
- name: Restore dependencies
run: dotnet restore $SOLUTION_LOCATION
- name: Build
run: dotnet build --no-restore $SOLUTION_LOCATION
- name: Test
run: dotnet test --no-build --verbosity normal $SOLUTION_LOCATION