Skip to content

Upgraded GitHub Actions & License Year. #28

Upgraded GitHub Actions & License Year.

Upgraded GitHub Actions & License Year. #28

Workflow file for this run

name: Build & Test Solution
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build & Test Solution
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.x
- name: Restore dependencies
run: dotnet restore
- name: Build Solution
run: dotnet build --no-restore
- name: Test Solution
run: dotnet test --no-build --verbosity normal --filter Category=Unit