Skip to content

Bump actions/setup-dotnet from 4 to 5 (#29) #162

Bump actions/setup-dotnet from 4 to 5 (#29)

Bump actions/setup-dotnet from 4 to 5 (#29) #162

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Build Library
run: dotnet build ./Underanalyzer
- name: Execute unit tests
run: dotnet test ./UnderanalyzerTest