Skip to content

Bump NUnit3TestAdapter from 5.0.0 to 6.1.0 #185

Bump NUnit3TestAdapter from 5.0.0 to 6.1.0

Bump NUnit3TestAdapter from 5.0.0 to 6.1.0 #185

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
permissions:
contents: read
defaults:
run:
shell: pwsh
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Run tests
run: dotnet test --configuration Release