Skip to content

Bump version: 5.4.0 #179

Bump version: 5.4.0

Bump version: 5.4.0 #179

Workflow file for this run

name: .NET Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
dotnet-test:
# ↓ Change this to "false" to disable the workflow without any alert messages.
if: ${{ true }}
# ↑ Change to "true" (or delete) to enable the workflow.
name: Run unit tests
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal