From d9737c0734c1ee47caaa053b58cc34b41d97b3f7 Mon Sep 17 00:00:00 2001 From: vova3211 Date: Sun, 1 Sep 2024 15:43:22 +0300 Subject: [PATCH] adjust github workflow to supported versions; reference to Supported Dotnet Versions --- .github/workflows/build.yml | 11 +++++++---- README.md | 4 ++-- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a30bf93..ffc4927 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,13 +10,16 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + dotnet-version: [ '6.0.x', '8.0.x' ] steps: - - uses: actions/checkout@v2 - - name: Setup .NET - uses: actions/setup-dotnet@v1 + - uses: actions/checkout@v4 + - name: Setup .NET ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet@v4 with: - dotnet-version: 5.0.x + dotnet-version: ${{ matrix.dotnet-version }} - name: Restore dependencies run: dotnet restore ./src/AspNetCore.Identity.Mongo/ - name: Build diff --git a/README.md b/README.md index 35db363..87576fa 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ This is a MongoDB provider for the ASP.NET Core Identity framework. It is comple ## Dot Net Core Versions support -Starting from v9.0.0 library supports **.Net 6.0** and **.Net 8.0** as they are -only versions maintainable by Microsoft. +Starting from v9.0.0 library only supports **.Net 6.0** and **.Net 8.0** as they are +only versions maintainable by Microsoft. [Supported Dotnet Versions](https://dotnet.microsoft.com/en-us/download/dotnet) Library supports **.Net 6.0**, **.Net 5.0**, **.Net Core 3.1**, **.Net Core 2.1** simultaneously started from 8.3.0 nuget package.