From 4affd4481613466aff6516cdbe174af7ed5afe7d Mon Sep 17 00:00:00 2001 From: Constantin Tews Date: Tue, 13 Sep 2022 14:50:43 +0200 Subject: [PATCH 1/2] Refer newer hamcrest repository. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 026b5ab..1439a93 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,4 @@ NHamcrest [![Build and Test](https://github.com/nhamcrest/NHamcrest/actions/workflows/main.yml/badge.svg?branch=master&event=push)](https://github.com/nhamcrest/NHamcrest/actions/workflows/main.yml) [![NuGet Status](https://buildstats.info/nuget/NHamcrest)](https://www.nuget.org/packages/NHamcrest/) -This is idiomatic C# port of (http://code.google.com/p/hamcrest/), specifically the Java version. +This is an idiomatic C# port of [Java Hamcrest](https://github.com/hamcrest/JavaHamcrest). \ No newline at end of file From aa662191e3bd101f054697242fbc3570249874b4 Mon Sep 17 00:00:00 2001 From: Constantin Tews Date: Tue, 13 Sep 2022 14:54:15 +0200 Subject: [PATCH 2/2] Update dotnet build version. --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5142c3e..7ad67ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,10 +2,10 @@ name: Build and Test on: push: - branches: + branches: - master pull_request: - branches: + branches: - master jobs: @@ -15,17 +15,17 @@ jobs: fail-fast: false matrix: os: [windows-latest, macOS-latest, ubuntu-latest] - dotnet: [6.0.302] + dotnet: [6.0.400] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - + - name: Setup .NET uses: actions/setup-dotnet@v2 with: dotnet-version: ${{ matrix.dotnet }} - + - name: Restore dependencies run: dotnet restore - name: Build