Skip to content

Update FeatureChecker for .NET 10 #12

Update FeatureChecker for .NET 10

Update FeatureChecker for .NET 10 #12

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
# run build and test
- name: Restore dependencies
run: dotnet restore ManagedCode.FeatureChecker.sln
- name: Build
run: dotnet build ManagedCode.FeatureChecker.sln --configuration Release --no-restore
- name: Test
run: dotnet test --solution ManagedCode.FeatureChecker.sln --configuration Release --no-restore