Skip to content

Bump version: 5.0.1 #23

Bump version: 5.0.1

Bump version: 5.0.1 #23

Workflow file for this run

name: .NET Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal