Bump NUnit3TestAdapter from 4.5.0 to 4.6.0 #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: yes | |
DOTNET_CLI_TELEMETRY_OPTOUT: yes | |
jobs: | |
build: | |
name: Build, Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build solution | |
run: dotnet build --no-restore --configuration Release | |
- name: Run tests | |
run: dotnet test tests/Jsondyno.Tests/ --no-build --configuration Release --verbosity normal |