Skip to content

Add xmldiff.exe command line tool and ad a unit test that captures bu… #22

Add xmldiff.exe command line tool and ad a unit test that captures bu…

Add xmldiff.exe command line tool and ad a unit test that captures bu… #22

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
- name: Restore dependencies
run: dotnet restore ./src/XmlDiff.sln
- name: Build
run: dotnet build --no-restore ./src/XmlDiff.sln
- name: Test for .NET 6.0
run: dotnet test --no-build --verbosity normal ./src/XmlDiff.sln /p:TargetFramework=net6.0