Skip to content

Add integration tests #47

Add integration tests

Add integration tests #47

Workflow file for this run

name: .NET Test
on:
workflow_dispatch:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Cache nuget packages
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
- name: Restore nuget packages
run: dotnet restore --configfile Nuget.config
- name: Build debug
run: dotnet build --nologo --no-restore --configuration Debug
- name: Test
run: dotnet test --nologo --no-build