Skip to content

Merge pull request #3 from dotnet-campus/t/lindexi/Comment #40

Merge pull request #3 from dotnet-campus/t/lindexi/Comment

Merge pull request #3 from dotnet-campus/t/lindexi/Comment #40

Workflow file for this run

name: .NET Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x
10.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release