Skip to content

Bump NUnit.Analyzers from 4.0.1 to 4.1.0 #179

Bump NUnit.Analyzers from 4.0.1 to 4.1.0

Bump NUnit.Analyzers from 4.0.1 to 4.1.0 #179

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: src
- name: Test
run: dotnet test --no-restore --verbosity normal --collect "XPlat Code Coverage" --results-directory TestResults/
working-directory: src
- name: Codecov
uses: codecov/codecov-action@v3
with:
directory: src/TestResults/