Skip to content

Remove null test as its not needed #2

Remove null test as its not needed

Remove null test as its not needed #2

Workflow file for this run

name: .NET Build & Test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
workflow_dispatch:
env:
DOTNET_VERSION: '8.0.x'
jobs:
test:
name: .NET Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
run: dotnet build --no-incremental
- name: Test
run: dotnet test --no-build