Skip to content

fix(deps): bump NUnit from 4.0.1 to 4.1.0 #288

fix(deps): bump NUnit from 4.0.1 to 4.1.0

fix(deps): bump NUnit from 4.0.1 to 4.1.0 #288

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: '6.x'
- name: Install Dependencies
run: |
dotnet restore
dotnet tool restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Lint
run: dotnet format --verify-no-changes
- name: Test
run: dotnet test --configuration Release --no-build --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
- name: Package
run: dotnet pack --configuration Release --no-build