Skip to content

feat: Update to .NET 8, refresh NuGet packages, and add GitHub workflows #1

feat: Update to .NET 8, refresh NuGet packages, and add GitHub workflows

feat: Update to .NET 8, refresh NuGet packages, and add GitHub workflows #1

Workflow file for this run

name: .NET Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build solution
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build --verbosity normal