Skip to content

Improve the implementation of omitMatches so it is not doing n-square… #21

Improve the implementation of omitMatches so it is not doing n-square…

Improve the implementation of omitMatches so it is not doing n-square… #21

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