Skip to content

Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0 #188

Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0

Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0 #188

Workflow file for this run

name: Build and Test
on: [push, workflow_dispatch]
env:
CONFIGURATION: Release
DOTNET_VERSION: 9.0.x
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
include-prerelease: true
- name: Build
run: dotnet build ProtobufSourceGenerator.slnx --configuration ${{ env.CONFIGURATION }}
- name: Test
run: dotnet test ProtobufSourceGenerator.slnx --configuration ${{ env.CONFIGURATION }}