Skip to content

Bump NUnit.Analyzers from 3.9.0 to 3.10.0 in /RDMSharpTests #36

Bump NUnit.Analyzers from 3.9.0 to 3.10.0 in /RDMSharpTests

Bump NUnit.Analyzers from 3.9.0 to 3.10.0 in /RDMSharpTests #36

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
path: RDMSharp/bin/Release/**/RDMSharp.dll