Skip to content

Add SubstractAssign pattern unit test #14

Add SubstractAssign pattern unit test

Add SubstractAssign pattern unit test #14

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@v3
with:
dotnet-version: '8.0.x'
- name: Install dependencies
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